Fix reaction field name in migration 88

This commit is contained in:
Fedor Indutny 2023-08-29 00:03:32 +02:00 committed by GitHub
parent 8aa397b7a6
commit e05de1aa6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 25 additions and 30 deletions

View file

@ -6,7 +6,6 @@ import { v4 as uuid } from 'uuid';
import { omit } from 'lodash';
import type { MessageReactionType } from '../../model-types.d';
import { isEmpty } from '../../util/iterables';
import { generateAci } from '../../types/ServiceId';
import {
addOutgoingReaction,
@ -25,7 +24,6 @@ describe('reaction utilities', () => {
): MessageReactionType => ({
emoji,
fromId: OUR_CONVO_ID,
targetAuthorAci: generateAci(),
targetTimestamp: Date.now(),
timestamp: Date.now(),
...(isPending ? { isSentByConversationId: { [uuid()]: false } } : {}),