Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33340999
D13576.1768921388.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D13576.1768921388.diff
View Options
diff --git a/lib/reducers/thread-reducer.js b/lib/reducers/thread-reducer.js
--- a/lib/reducers/thread-reducer.js
+++ b/lib/reducers/thread-reducer.js
@@ -335,8 +335,38 @@
const changedThreadInfos: { [string]: RawThreadInfo } = {};
for (const [threadID, mostRecentTime] of threadIDToMostRecentTime) {
const threadInfo = state.threadInfos[threadID];
+ if (!threadInfo) {
+ continue;
+ }
+
+ if (threadInfo.thick) {
+ if (threadInfo.timestamps.currentUser.unread > mostRecentTime) {
+ continue;
+ }
+ changedThreadInfos[threadID] = {
+ ...threadInfo,
+ timestamps: {
+ ...threadInfo.timestamps,
+ currentUser: {
+ ...threadInfo.timestamps.currentUser,
+ unread: mostRecentTime,
+ },
+ },
+ };
+ if (!threadInfo.currentUser.unread) {
+ changedThreadInfos[threadID] = {
+ ...changedThreadInfos[threadID],
+ currentUser: {
+ ...threadInfo.currentUser,
+ unread: true,
+ },
+ };
+ }
+ continue;
+ }
+
if (
- !threadInfo ||
+ !action.payload.updatesCurrentAsOf ||
threadInfo.currentUser.unread ||
action.payload.updatesCurrentAsOf > mostRecentTime
) {
diff --git a/lib/types/message-types.js b/lib/types/message-types.js
--- a/lib/types/message-types.js
+++ b/lib/types/message-types.js
@@ -669,7 +669,7 @@
export type SaveMessagesPayload = {
+rawMessageInfos: $ReadOnlyArray<RawMessageInfo>,
- +updatesCurrentAsOf: number,
+ +updatesCurrentAsOf: ?number,
};
export type NewMessagesPayload = {
diff --git a/native/push/push-handler.react.js b/native/push/push-handler.react.js
--- a/native/push/push-handler.react.js
+++ b/native/push/push-handler.react.js
@@ -668,9 +668,6 @@
for (const keyserverID in keyserverIDToMessageInfos) {
const updatesCurrentAsOf = this.props.allUpdatesCurrentAsOf[keyserverID];
const messageInfos = keyserverIDToMessageInfos[keyserverID];
- if (!updatesCurrentAsOf) {
- continue;
- }
this.props.dispatch({
type: saveMessagesActionType,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Jan 20, 3:03 PM (18 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5960833
Default Alt Text
D13576.1768921388.diff (2 KB)
Attached To
Mode
D13576: [lib] fix `PushHandler` to support DMs
Attached
Detach File
Event Timeline
Log In to Comment