mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 03:25:19 +01:00
Don't read nodes twice in SqlStorage (#3836)
This commit is contained in:
parent
96008f6338
commit
7d89c97907
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user