Fixed performLookup in API not returning valid block data (#308)
This commit is contained in:
parent
3ffed30b1e
commit
acb71a83a2
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue