Merge pull request #800 from hjubb/fix_open_group_requests

Fix open group requests
This commit is contained in:
Harris 2021-11-23 14:07:05 +11:00 committed by GitHub
commit 2c3ec423bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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
}
}