Skip to content

Commit

Permalink
Maybe this will solve null list
Browse files Browse the repository at this point in the history
  • Loading branch information
nrakocevic committed Dec 9, 2024
1 parent e02cb6d commit f4d5521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main/java/com/backend/backend/user/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ protected void onCreate() {
this.dateCreated = System.currentTimeMillis();
this.unlockedProfilePictures = Arrays.asList(Long.valueOf(0));
this.unlockedThemes = Arrays.asList(Long.valueOf(0), Long.valueOf(1));
this.gameSessions = Collections.emptyList();
this.gameSessions = Collections.<FightGame>emptyList();
}

}

0 comments on commit f4d5521

Please sign in to comment.