Blur avatars of unapproved conversations
This commit is contained in:
@@ -2326,7 +2326,9 @@ async function saveConversation(
|
||||
`
|
||||
).run({
|
||||
id,
|
||||
json: objectToJSON(omit(data, ['profileLastFetchedAt'])),
|
||||
json: objectToJSON(
|
||||
omit(data, ['profileLastFetchedAt', 'unblurredAvatarPath'])
|
||||
),
|
||||
|
||||
e164: e164 || null,
|
||||
uuid: uuid || null,
|
||||
@@ -2399,7 +2401,9 @@ async function updateConversation(data: ConversationType): Promise<void> {
|
||||
`
|
||||
).run({
|
||||
id,
|
||||
json: objectToJSON(omit(data, ['profileLastFetchedAt'])),
|
||||
json: objectToJSON(
|
||||
omit(data, ['profileLastFetchedAt', 'unblurredAvatarPath'])
|
||||
),
|
||||
|
||||
e164: e164 || null,
|
||||
uuid: uuid || null,
|
||||
|
Reference in New Issue
Block a user