mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-26 07:44:24 +02:00
Don't read nodes twice in SqlStorage (#3836)
This commit is contained in:
@@ -874,7 +874,7 @@ public class SqlStorage implements StorageImplementation {
|
||||
while (rs.next()) {
|
||||
Node node = readNode(rs);
|
||||
if (node != null) {
|
||||
nodes.add(readNode(rs));
|
||||
nodes.add(node);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user