forked from Fascinated/Bat
fix npe
This commit is contained in:
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
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user