Don't display 'read' icon if read-recipts-setting is disabled
This commit is contained in:
parent
527b884eb4
commit
68e3cade17
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@
|
|||
}
|
||||
|
||||
const readBy = this.get('read_by') || [];
|
||||
if (readBy.length > 0) {
|
||||
if (storage.get('read-receipt-setting') && readBy.length > 0) {
|
||||
return 'read';
|
||||
}
|
||||
const delivered = this.get('delivered');
|
||||
|
|
Loading…
Reference in a new issue