-
Notifications
You must be signed in to change notification settings - Fork 232
Update dependency org.matrix.rustcomponents:sdk-android to v0.1.62 #1562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency org.matrix.rustcomponents:sdk-android to v0.1.62 #1562
Conversation
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
9acd0fb
to
be7ee31
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Just some cleanup to do and you can merge.
@@ -301,7 +301,7 @@ class RustMatrixClient constructor( | |||
@OptIn(ExperimentalUnsignedTypes::class) | |||
override suspend fun uploadAvatar(mimeType: String, data: ByteArray): Result<Unit> = | |||
withContext(sessionDispatcher) { | |||
runCatching { client.uploadAvatar(mimeType, data.toUByteArray().toList()) } | |||
runCatching { client.uploadAvatar(mimeType, data) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just remove the OptIn
above and it will be fine.
@@ -385,7 +385,7 @@ class RustMatrixClient constructor( | |||
@OptIn(ExperimentalUnsignedTypes::class) | |||
override suspend fun uploadMedia(mimeType: String, data: ByteArray, progressCallback: ProgressCallback?): Result<String> = withContext(sessionDispatcher) { | |||
runCatching { | |||
client.uploadMedia(mimeType, data.toUByteArray().toList(), progressCallback?.toProgressWatcher()) | |||
client.uploadMedia(mimeType, data, progressCallback?.toProgressWatcher()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just remove the OptIn
above and it will be fine.
@@ -376,7 +376,7 @@ class RustMatrixRoom( | |||
@OptIn(ExperimentalUnsignedTypes::class) | |||
override suspend fun updateAvatar(mimeType: String, data: ByteArray): Result<Unit> = withContext(roomDispatcher) { | |||
runCatching { | |||
innerRoom.uploadAvatar(mimeType, data.toUByteArray().toList(), null) | |||
innerRoom.uploadAvatar(mimeType, data, null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just remove the OptIn
above and it will be fine.
df24cf3
to
fd214fd
Compare
fd214fd
to
5cc81ee
Compare
Adds the |
📱 Scan the QR code below to install the build (arm64 only) for this PR. |
Kudos, SonarCloud Quality Gate passed! |
All these changes on uniffi means async uniffi has been updated too, see #1563 |
This PR contains the following updates:
0.1.61
->0.1.62
⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.