diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index ab9e5a547..2e1fa720e 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -1860,8 +1860,8 @@ message = window.Signal.Emoji.replaceColons(message).trim(); const toastOptions = { type: 'info' }; - const expiredVersion = await extension.expiredPromise(); - if (expiredVersion) { + // let it pass if we're still trying to read it or it's false... + if (extension.expiredStatus() === true) { toastOptions.title = i18n('expiredWarning'); toastOptions.id = 'expiredWarning'; }