mirror of
https://github.com/PlayPro/CoreProtect.git
synced 2024-11-24 12:16:36 +01:00
Fixed performLookup in API not returning valid block data (#308)
This commit is contained in:
parent
3ffed30b1e
commit
acb71a83a2
@ -56,7 +56,7 @@ public class Lookup extends Queue {
|
||||
results[newId] = (String) map[i];
|
||||
}
|
||||
}
|
||||
else if (i == 13 && map[i] instanceof Byte[]) {
|
||||
else if (i == 13 && map[i] instanceof byte[]) {
|
||||
results[newId] = Util.byteDataToString((byte[]) map[i], (int) map[6]);
|
||||
}
|
||||
else if (i > 0) { // skip rowid
|
||||
|
Loading…
Reference in New Issue
Block a user