Fixed null error when using older premium jars

This commit is contained in:
libraryaddict 2019-03-06 02:32:30 +13:00
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);
}