app/html/sideNav/sideNavDiscovery.jsView |
---|
40 | 40 … | |
41 | 41 … | function markUnread (msg) { |
42 | 42 … | unreadMsgsCache.get(msg.value.content.root || msg.key) |
43 | 43 … | .delete(msg.key) |
44 | | - |
| 44 … | + |
45 | 45 … | const participants = api.message.sync.getParticipants(msg) |
46 | 46 … | unreadMsgsCache.get(participants.key) |
47 | 47 … | .delete(msg.key) |
48 | 48 … | } |
70 | 70 … | updateCache(getUnreadMsgsCache(rootKey), msg) |
71 | 71 … | } |
72 | 72 … | |
73 | 73 … | pull( |
74 | | - next(api.feed.pull.private, {reverse: true, limit: 1000, live: false, property: ['value', 'timestamp']}), |
| 74 … | + next(api.feed.pull.private, {reverse: true, limit: 1000, live: false, property: ['timestamp']}), |
75 | 75 … | privateMsgFilter(), |
76 | 76 … | pull.drain(updateUnreadMsgsCache) |
77 | 77 … | ) |
78 | 78 … | |
79 | 79 … | pull( |
80 | | - next(api.feed.pull.private, {old: false, live: true, property: ['value', 'timestamp']}), |
| 80 … | + next(api.feed.pull.private, {old: false, live: true, property: ['timestamp']}), |
81 | 81 … | privateMsgFilter(), |
82 | 82 … | pull.drain(updateUnreadMsgsCache) |
83 | 83 … | ) |
84 | 84 … | |
366 | 366 … | return true |
367 | 367 … | } |
368 | 368 … | return false |
369 | 369 … | } |
370 | | - |