fix npe
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 38s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 38s
This commit is contained in:
parent
50391e5344
commit
b66114503c
@ -29,6 +29,18 @@ public class UserScoreFeedProfile extends Profile {
|
|||||||
super("scoresaber-user-score-feed");
|
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
|
* Checks if a user is being tracked
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user