SAKE: Fix MKW ownerid filter to be signed

This commit is contained in:
mkwcat
2023-11-04 07:23:38 -04:00
parent 5870d6edaf
commit b77dd6881a

View File

@@ -343,7 +343,7 @@ func searchForRecords(moduleName string, request StorageSearchForRecords) *Stora
return &errorResponse
}
ownerId, err := strconv.ParseUint(match[1], 10, 32)
ownerId, err := strconv.ParseInt(match[1], 10, 32)
if err != nil {
logging.Error(moduleName, "Invalid owner ID")
return &errorResponse