mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 12:39:20 +03:00
Rename printableUnreadCount() to unreadCount()
This commit is contained in:
parent
cfdc37189b
commit
c50670fc7f
4 changed files with 6 additions and 6 deletions
|
|
@ -111,7 +111,7 @@ export class MailFolderList extends AbstractViewLeft {
|
|||
let search = '';
|
||||
if (event.target.matches('.flag-icon') && !folder.isFlagged()) {
|
||||
search = 'flagged';
|
||||
} else if (folder.printableUnreadCount() && event.clientX > el.getBoundingClientRect().right - 25) {
|
||||
} else if (folder.unreadCount() && event.clientX > el.getBoundingClientRect().right - 25) {
|
||||
search = 'unseen';
|
||||
}
|
||||
hasher.setHash(mailBox(folder.fullNameHash, 1, search));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue