From 26ae1c8a8887b662cf957a88a5ae5d0d2fa21e6d Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Thu, 9 Mar 2023 16:50:29 -0500 Subject: [PATCH] Adds storage service logging around story distribution lists --- ts/services/storageRecordOps.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/services/storageRecordOps.ts b/ts/services/storageRecordOps.ts index 861dddb4f..ee055ac19 100644 --- a/ts/services/storageRecordOps.ts +++ b/ts/services/storageRecordOps.ts @@ -1575,6 +1575,7 @@ export async function mergeStoryDistributionListRecord( ); if (!needsUpdate) { + details.push('not updated'); return { details: [...details, ...conflictDetails], hasConflict, @@ -1584,6 +1585,7 @@ export async function mergeStoryDistributionListRecord( } if (needsUpdate) { + details.push('updated'); await dataInterface.modifyStoryDistributionWithMembers(storyDistribution, { toAdd, toRemove,