fix invalid object format return for #filterError

This commit is contained in:
Nick Krecklow 2020-04-21 18:11:29 -05:00
parent 4d66241ada
commit 2a3f177826
No known key found for this signature in database
GPG Key ID: 5F149FDE156FFA94

@ -284,7 +284,9 @@ class ServerRegistration {
message = message.substring(0, 28) + '...'
}
return message
return {
message: message
}
}
}