fix for losing data... LOL
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 45s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 45s
This commit is contained in:
parent
7f09c6d06c
commit
188124991e
@ -158,7 +158,7 @@ public class BatGuild extends ProfileHolder {
|
|||||||
document.put("_id", id);
|
document.put("_id", id);
|
||||||
document.put("createdAt", createdAt);
|
document.put("createdAt", createdAt);
|
||||||
|
|
||||||
Map<String, org.bson.Document> profileDocuments = new HashMap<>();
|
Map<String, org.bson.Document> profileDocuments = this.document.get("profiles", new HashMap<>());
|
||||||
for (Serializable profile : getProfiles().values()) {
|
for (Serializable profile : getProfiles().values()) {
|
||||||
profileDocuments.put(profile.getClass().getSimpleName(), profile.serialize(BatApplication.GSON));
|
profileDocuments.put(profile.getClass().getSimpleName(), profile.serialize(BatApplication.GSON));
|
||||||
}
|
}
|
||||||
|
@ -113,7 +113,7 @@ public class BatUser extends ProfileHolder {
|
|||||||
document.put("_id", id);
|
document.put("_id", id);
|
||||||
document.put("createdAt", createdAt);
|
document.put("createdAt", createdAt);
|
||||||
|
|
||||||
Map<String, org.bson.Document> profileDocuments = new HashMap<>();
|
Map<String, org.bson.Document> profileDocuments = this.document.get("profiles", new HashMap<>());
|
||||||
for (Serializable profile : getProfiles().values()) {
|
for (Serializable profile : getProfiles().values()) {
|
||||||
profileDocuments.put(profile.getClass().getSimpleName(), profile.serialize(BatApplication.GSON));
|
profileDocuments.put(profile.getClass().getSimpleName(), profile.serialize(BatApplication.GSON));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user