fix npe
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 38s

This commit is contained in:
Lee 2024-06-30 03:39:38 +01:00
parent 50391e5344
commit b66114503c

@ -29,6 +29,18 @@ public class UserScoreFeedProfile extends Profile {
super("scoresaber-user-score-feed");
}
/**
* Gets the tracked users
*
* @return the tracked users
*/
public List<String> getTrackedUsers() {
if (this.trackedUsers == null) {
this.trackedUsers = new ArrayList<>();
}
return trackedUsers;
}
/**
* Checks if a user is being tracked
*