mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-09-24 21:11:41 +02:00
Fix null check in selectAllGroupPermissions
This commit is contained in:
@@ -883,7 +883,7 @@ public class SqlStorage implements StorageImplementation {
|
||||
while (rs.next()) {
|
||||
String holder = rs.getString("name");
|
||||
Collection<SqlNode> list = nodes.get(holder);
|
||||
if (nodes != null) {
|
||||
if (list != null) {
|
||||
list.add(readNode(rs));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user