mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02: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:
+1
-1
@@ -32,7 +32,7 @@ public class SnapshotInfo implements Comparable<SnapshotInfo> {
|
||||
}
|
||||
|
||||
public WLUser getUser() {
|
||||
return user;
|
||||
return user != null ? user : new WLUser();
|
||||
}
|
||||
|
||||
public String getCreatedAt() {
|
||||
|
||||
Reference in New Issue
Block a user