Sync story read status from primary
This commit is contained in:
parent
da45f26d37
commit
4896ce32c3
3 changed files with 24 additions and 24 deletions
|
@ -9,7 +9,7 @@ import { Collection, Model } from 'backbone';
|
|||
import type { ConversationModel } from '../models/conversations';
|
||||
import type { MessageModel } from '../models/messages';
|
||||
import type { MessageAttributesType } from '../model-types.d';
|
||||
import { isOutgoing } from '../state/selectors/message';
|
||||
import { isOutgoing, isStory } from '../state/selectors/message';
|
||||
import { isDirectConversation } from '../util/whatTypeOfConversation';
|
||||
import { getOwn } from '../util/getOwn';
|
||||
import { missingCaseError } from '../util/missingCaseError';
|
||||
|
@ -66,7 +66,8 @@ async function getTargetMessage(
|
|||
return null;
|
||||
}
|
||||
const message = messages.find(
|
||||
item => isOutgoing(item) && sourceId === item.conversationId
|
||||
item =>
|
||||
(isOutgoing(item) || isStory(item)) && sourceId === item.conversationId
|
||||
);
|
||||
if (message) {
|
||||
return window.MessageController.register(message.id, message);
|
||||
|
@ -78,7 +79,8 @@ async function getTargetMessage(
|
|||
ids.push(sourceId);
|
||||
|
||||
const target = messages.find(
|
||||
item => isOutgoing(item) && ids.includes(item.conversationId)
|
||||
item =>
|
||||
(isOutgoing(item) || isStory(item)) && ids.includes(item.conversationId)
|
||||
);
|
||||
if (!target) {
|
||||
return null;
|
||||
|
|
|
@ -8,7 +8,7 @@ import { Collection, Model } from 'backbone';
|
|||
import type { MessageModel } from '../models/messages';
|
||||
import { ReadStatus } from '../messages/MessageReadStatus';
|
||||
import { markViewed } from '../services/MessageUpdater';
|
||||
import { isIncoming } from '../state/selectors/message';
|
||||
import { isIncoming, isStory } from '../state/selectors/message';
|
||||
import { notificationService } from '../services/notifications';
|
||||
import * as log from '../logging/log';
|
||||
|
||||
|
@ -67,7 +67,10 @@ export class ViewSyncs extends Collection {
|
|||
uuid: item.sourceUuid,
|
||||
});
|
||||
|
||||
return isIncoming(item) && senderId === sync.get('senderId');
|
||||
return (
|
||||
(isIncoming(item) || isStory(item)) &&
|
||||
senderId === sync.get('senderId')
|
||||
);
|
||||
});
|
||||
|
||||
if (!found) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue