mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-26 15:54:22 +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()) {
|
while (rs.next()) {
|
||||||
Node node = readNode(rs);
|
Node node = readNode(rs);
|
||||||
if (node != null) {
|
if (node != null) {
|
||||||
nodes.add(readNode(rs));
|
nodes.add(node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user