Updated changelog with 5.0.12 release info
This commit is contained in:
parent
e907dbaaca
commit
6dba85d41b
2 changed files with 7 additions and 1 deletions
|
@ -34,6 +34,12 @@ Group changes to describe their impact on the project, as follows:
|
|||
### Fixed
|
||||
- Messages not marked as reply in basic chat room if sending more than 1 content
|
||||
|
||||
## [5.0.12] - 2023-05-23
|
||||
|
||||
### Fixed
|
||||
- Crash if notification manager throws an exception
|
||||
- Video preview not moving if call was started in audio only
|
||||
|
||||
## [5.0.11] - 2023-05-09
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -182,7 +182,7 @@ class ChatMessageContentData(
|
|||
val content = getContent()
|
||||
val filePath = content.filePath
|
||||
if (content.isFileTransfer) {
|
||||
if (filePath == null || filePath.isEmpty()) {
|
||||
if (filePath.isNullOrEmpty()) {
|
||||
val contentName = content.name
|
||||
if (contentName != null) {
|
||||
val file = FileUtils.getFileStoragePath(contentName)
|
||||
|
|
Loading…
Reference in a new issue