Small API change in SDK 0.1.5
This commit is contained in:
parent
cedfde23d1
commit
5c0b3b8129
1 changed files with 2 additions and 2 deletions
|
|
@ -223,9 +223,9 @@ class RustMatrixClient constructor(
|
||||||
): Result<ByteArray> =
|
): Result<ByteArray> =
|
||||||
withContext(dispatchers.io) {
|
withContext(dispatchers.io) {
|
||||||
runCatching {
|
runCatching {
|
||||||
mediaSourceFromUrl(url).use { source ->
|
mediaSourceFromUrl(url).use { mediaSource ->
|
||||||
client.getMediaThumbnail(
|
client.getMediaThumbnail(
|
||||||
source = source,
|
mediaSource = mediaSource,
|
||||||
width = width.toULong(),
|
width = width.toULong(),
|
||||||
height = height.toULong()
|
height = height.toULong()
|
||||||
).toUByteArray().toByteArray()
|
).toUByteArray().toByteArray()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue