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
|
* Add a naughty message for the invalid user ids
|
||||||
*/
|
*/
|
||||||
private static String getSanitizedUser(String userID) {
|
private static String getSanitizedUser(String userID) {
|
||||||
|
if (userID == null) {
|
||||||
|
return "N/A";
|
||||||
|
}
|
||||||
|
|
||||||
if (!userID.matches("[0-9]+")) {
|
if (!userID.matches("[0-9]+")) {
|
||||||
return String.format("... %s? Am I reading this right?", userID);
|
return String.format("... %s? Am I reading this right?", userID);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user