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:
Marc Egea i Sala 2015-09-25 16:15:37 +01:00
parent 78c92e62b6
commit 61a5c5870c

View file

@ -32,7 +32,7 @@ public class SnapshotInfo implements Comparable<SnapshotInfo> {
}
public WLUser getUser() {
return user;
return user != null ? user : new WLUser();
}
public String getCreatedAt() {