diff --git a/android/app/build.gradle b/android/app/build.gradle index 8f6c8eeb9dee..5ffdbe6d94a4 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -148,8 +148,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001006406 - versionName "1.0.64-6" + versionCode 1001006407 + versionName "1.0.64-7" } splits { abi { diff --git a/desktop/main.js b/desktop/main.js index 3e7b7db379e8..5a9dff5a1cf2 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -228,7 +228,7 @@ const mainWindow = (() => { ipcMain.on(ELECTRON_EVENTS.REQUEST_VISIBILITY, (event) => { // This is how synchronous messages work in Electron // eslint-disable-next-line no-param-reassign - event.returnValue = browserWindow && browserWindow.isFocused(); + event.returnValue = browserWindow && !browserWindow.isDestroyed() && browserWindow.isFocused(); }); // This allows the renderer process to bring the app diff --git a/ios/ExpensifyCash/Info.plist b/ios/ExpensifyCash/Info.plist index aaaac50d8f2f..189ea344f5d6 100644 --- a/ios/ExpensifyCash/Info.plist +++ b/ios/ExpensifyCash/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 1.0.64.6 + 1.0.64.7 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/ExpensifyCashTests/Info.plist b/ios/ExpensifyCashTests/Info.plist index 336d25a1f732..05e14f829f8e 100644 --- a/ios/ExpensifyCashTests/Info.plist +++ b/ios/ExpensifyCashTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.0.64.6 + 1.0.64.7 diff --git a/package-lock.json b/package-lock.json index 0d5f4148da57..b0eb8e02953d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "expensify.cash", - "version": "1.0.64-6", + "version": "1.0.64-7", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a29d15783b31..62847c26c728 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "expensify.cash", - "version": "1.0.64-6", + "version": "1.0.64-7", "author": "Expensify, Inc.", "homepage": "https://expensify.cash", "description": "Expensify.cash is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",