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