fix: treat result as number and convert to Long

This commit is contained in:
jubb 2021-11-23 09:49:01 +11:00
parent 19384eeb5b
commit b55d0ad270

View File

@ -214,7 +214,7 @@ object OpenGroupAPIV2 {
val parameters = mapOf( "file" to base64EncodedFile )
val request = Request(verb = POST, room = room, server = server, endpoint = "files", parameters = parameters)
return send(request).map { json ->
json["result"] as? Long ?: throw Error.ParsingFailed
(json["result"] as? Number)?.toLong() ?: throw Error.ParsingFailed
}
}