diff --git a/ts/components/conversation/TimerNotification.stories.tsx b/ts/components/conversation/TimerNotification.stories.tsx index 3b19c9c298..dba47f63b7 100644 --- a/ts/components/conversation/TimerNotification.stories.tsx +++ b/ts/components/conversation/TimerNotification.stories.tsx @@ -103,3 +103,21 @@ export function SetBySync(args: Props): JSX.Element { ); } + +export function SetByUnknownContact(args: Props): JSX.Element { + const props: Props = { + ...args, + disabled: false, + expireTimer: DurationInSeconds.fromHours(1), + type: 'fromMember', + title: 'Unknown contact', + }; + + return ( + <> + +
+ + + ); +} diff --git a/ts/jobs/AttachmentDownloadManager.ts b/ts/jobs/AttachmentDownloadManager.ts index 23ee4e6b30..44faa5d341 100644 --- a/ts/jobs/AttachmentDownloadManager.ts +++ b/ts/jobs/AttachmentDownloadManager.ts @@ -192,6 +192,16 @@ export class AttachmentDownloadManager extends JobManager