diff --git a/android/app/build.gradle b/android/app/build.gradle
index 4196ac8a5291..7f8a697df7fc 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -152,8 +152,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled rootProject.ext.multiDexEnabled
- versionCode 1001018708
- versionName "1.1.87-8"
+ versionCode 1001018709
+ versionName "1.1.87-9"
}
splits {
abi {
diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist
index 6e5fcc0ab6ab..3a3aada60b43 100644
--- a/ios/NewExpensify/Info.plist
+++ b/ios/NewExpensify/Info.plist
@@ -30,7 +30,7 @@
CFBundleVersion
- 1.1.87.8
+ 1.1.87.9
ITSAppUsesNonExemptEncryption
LSApplicationQueriesSchemes
diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist
index de1502589e1c..ba014838702e 100644
--- a/ios/NewExpensifyTests/Info.plist
+++ b/ios/NewExpensifyTests/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 1.1.87.8
+ 1.1.87.9
diff --git a/package-lock.json b/package-lock.json
index 391e624dad25..eee1c7c72c56 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.1.87-8",
+ "version": "1.1.87-9",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index f283e12576bb..ac4c0c027516 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "new.expensify",
- "version": "1.1.87-8",
+ "version": "1.1.87-9",
"author": "Expensify, Inc.",
"homepage": "https://new.expensify.com",
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",
diff --git a/src/libs/actions/App.js b/src/libs/actions/App.js
index b36edc546300..e6914a2ceff0 100644
--- a/src/libs/actions/App.js
+++ b/src/libs/actions/App.js
@@ -210,10 +210,14 @@ function setUpPoliciesAndNavigate(session, currentPath) {
function openProfile() {
const oldTimezoneData = myPersonalDetails.timezone || {};
- const newTimezoneData = {
- automatic: lodashGet(oldTimezoneData, 'automatic', true),
- selected: moment.tz.guess(true),
- };
+ let newTimezoneData = oldTimezoneData;
+
+ if (lodashGet(oldTimezoneData, 'automatic', true)) {
+ newTimezoneData = {
+ automatic: true,
+ selected: moment.tz.guess(true),
+ };
+ }
API.write('OpenProfile', {
timezone: JSON.stringify(newTimezoneData),