mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-22 22:28:13 +00:00
Fixed outgoing messages with files in group chat download issue on other devices with same account
This commit is contained in:
parent
75f7d140d8
commit
1a44f80328
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ public class ChatMessageViewHolder extends RecyclerView.ViewHolder implements Vi
|
|||
final TextView fileName = content.findViewById(R.id.file);
|
||||
fileName.setVisibility(View.GONE);
|
||||
|
||||
if (c.isFile() || (c.isFileTransfer() && message.isOutgoing())) {
|
||||
if (c.isFile() || (c.isFileTransfer() && !c.getFilePath().isEmpty())) {
|
||||
// If message is outgoing, even if content
|
||||
// is file transfer we have the file available
|
||||
final String filePath = c.getFilePath();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue