mirror of
https://github.com/WiiLink24/wfc-server.git
synced 2026-08-26 02:24:24 -05:00
SAKE: Fix MKW ownerid filter to be signed
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user