mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-04 08:59:47 +01:00
Fixed null error when using older premium jars
This commit is contained in:
parent
3ae785fb35
commit
ec5bf18399
@ -238,6 +238,10 @@ public class LibsPremium {
|
||||
* Add a naughty message for the invalid user ids
|
||||
*/
|
||||
private static String getSanitizedUser(String userID) {
|
||||
if (userID == null) {
|
||||
return "N/A";
|
||||
}
|
||||
|
||||
if (!userID.matches("[0-9]+")) {
|
||||
return String.format("... %s? Am I reading this right?", userID);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user