Small API change in SDK 0.1.5

This commit is contained in:
Benoit Marty 2023-03-29 09:35:36 +02:00 committed by Benoit Marty
parent d7c8e819cf
commit 18867dc8e6

View file

@ -223,9 +223,9 @@ class RustMatrixClient constructor(
): Result<ByteArray> =
withContext(dispatchers.io) {
runCatching {
mediaSourceFromUrl(url).use { source ->
mediaSourceFromUrl(url).use { mediaSource ->
client.getMediaThumbnail(
source = source,
mediaSource = mediaSource,
width = width.toULong(),
height = height.toULong()
).toUByteArray().toByteArray()