mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Support for anonymous saved versions
This fixes a case when de API sends a version without user. There was a bug allowing to create anonymous versions in the application and we have to support the old data. The problem here is that SnapshotInfo classes are inflated from json via Gson. This method does not call any constructor and, since the json does not include the ‘user’ key, the bridge crashes because we’re not expecting null users. I’m not happy with this fix, but is the minimum solution that does not affect anything else.
This commit is contained in:
parent
78c92e62b6
commit
61a5c5870c
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ public class SnapshotInfo implements Comparable<SnapshotInfo> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public WLUser getUser() {
|
public WLUser getUser() {
|
||||||
return user;
|
return user != null ? user : new WLUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCreatedAt() {
|
public String getCreatedAt() {
|
||||||
|
|
Loading…
Reference in a new issue