|
|
|
@ -16,7 +16,6 @@ import { GoogleChrome } from '../util';
|
|
|
|
|
import { appendFetchAvatarAndProfileJob } from './userProfileImageUpdates';
|
|
|
|
|
import { ConversationTypeEnum } from '../models/conversationAttributes';
|
|
|
|
|
import { getUsBlindedInThatServer } from '../session/apis/open_group_api/sogsv3/knownBlindedkeys';
|
|
|
|
|
import { Action, Reaction } from '../types/Reaction';
|
|
|
|
|
|
|
|
|
|
function contentTypeSupported(type: string): boolean {
|
|
|
|
|
const Chrome = GoogleChrome;
|
|
|
|
@ -339,18 +338,6 @@ export async function handleMessageJob(
|
|
|
|
|
) || messageModel.get('timestamp')} in conversation ${conversation.idForLogging()}`
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (!messageModel.get('isPublic') && regularDataMessage.reaction) {
|
|
|
|
|
if (
|
|
|
|
|
regularDataMessage.reaction.action === Action.REACT &&
|
|
|
|
|
conversation.isPrivate() &&
|
|
|
|
|
messageModel.get('unread')
|
|
|
|
|
) {
|
|
|
|
|
messageModel.set('reaction', regularDataMessage.reaction as Reaction);
|
|
|
|
|
conversation.throttledNotify(messageModel);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
confirm?.();
|
|
|
|
|
} else {
|
|
|
|
|
const sendingDeviceConversation = await getConversationController().getOrCreateAndWait(
|
|
|
|
|
source,
|
|
|
|
|
ConversationTypeEnum.PRIVATE
|
|
|
|
@ -451,4 +438,3 @@ export async function handleMessageJob(
|
|
|
|
|
window?.log?.error('handleMessageJob', messageModel.idForLogging(), 'error:', errorForLog);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|