mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-12-17 22:57:49 +01:00
Fix null check in selectAllGroupPermissions
This commit is contained in:
parent
fca2f1e6de
commit
6a256d59f5
@ -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));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user