mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-26 11:26:01 +03:00
Merge pull request #2108 from vector-im/feature/fix_cannnot_play_video
output stream not closed
This commit is contained in:
commit
653d6c6050
2 changed files with 8 additions and 5 deletions
|
@ -11,6 +11,7 @@ Improvements 🙌:
|
|||
Bugfix 🐛:
|
||||
- Clear the notification when the event is read elsewhere (#1822)
|
||||
- Speakerphone is not used for ringback tone (#1644, #1645)
|
||||
- Various report of people that cannot play video (#2107)
|
||||
|
||||
Translations 🗣:
|
||||
-
|
||||
|
|
|
@ -144,11 +144,13 @@ internal class DefaultFileService @Inject constructor(
|
|||
|
||||
if (elementToDecrypt != null) {
|
||||
Timber.v("## FileService: decrypt file")
|
||||
val decryptSuccess = MXEncryptedAttachments.decryptAttachment(
|
||||
source.inputStream(),
|
||||
elementToDecrypt,
|
||||
destFile.outputStream().buffered()
|
||||
)
|
||||
val decryptSuccess = destFile.outputStream().buffered().use {
|
||||
MXEncryptedAttachments.decryptAttachment(
|
||||
source.inputStream(),
|
||||
elementToDecrypt,
|
||||
it
|
||||
)
|
||||
}
|
||||
response.close()
|
||||
if (!decryptSuccess) {
|
||||
return@flatMap Try.Failure(IllegalStateException("Decryption error"))
|
||||
|
|
Loading…
Reference in a new issue