diff --git a/package.json b/package.json index 960e5f7fd..6a7bdd1a8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.6.4", + "version": "1.6.5", "license": "GPL-3.0", "author": { "name": "Loki Project", diff --git a/ts/components/session/ActionsPanel.tsx b/ts/components/session/ActionsPanel.tsx index 129da2a27..9edc289bc 100644 --- a/ts/components/session/ActionsPanel.tsx +++ b/ts/components/session/ActionsPanel.tsx @@ -54,20 +54,6 @@ export enum SectionType { Moon, } -const showUnstableAttachmentsDialogIfNeeded = async () => { - const alreadyShown = (await getItemById('showUnstableAttachmentsDialog'))?.value; - - if (!alreadyShown) { - window.confirmationDialog({ - title: 'File server update', - message: - "We're upgrading the way files are stored. File transfer may be unstable for the next 24-48 hours.", - }); - - await createOrUpdateItem({ id: 'showUnstableAttachmentsDialog', value: true }); - } -}; - const Section = (props: { type: SectionType; avatarPath?: string }) => { const ourNumber = useSelector(getOurNumber); const unreadMessageCount = useSelector(getUnreadMessageCount); @@ -256,7 +242,6 @@ const doAppStartUp = (dispatch: Dispatch) => { void OnionPaths.getInstance().buildNewOnionPaths(); } - void showUnstableAttachmentsDialogIfNeeded(); // init the messageQueue. In the constructor, we add all not send messages // this call does nothing except calling the constructor, which will continue sending message in the pipeline void getMessageQueue().processAllPending();