diff --git a/android/app/build.gradle b/android/app/build.gradle index fea11f76fba..74f52a25b7f 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -106,8 +106,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001032902 - versionName "1.3.29-2" + versionCode 1001032903 + versionName "1.3.29-3" } splits { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index 258a9a63f2d..36db5a1a792 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -32,7 +32,7 @@ CFBundleVersion - 1.3.29.2 + 1.3.29.3 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index 9fd31b93a56..85da6b83167 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.3.29.2 + 1.3.29.3 diff --git a/package-lock.json b/package-lock.json index c9af612dce2..91467cada5d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "new.expensify", - "version": "1.3.29-2", + "version": "1.3.29-3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "new.expensify", - "version": "1.3.29-2", + "version": "1.3.29-3", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index d8295fb30f5..d0b6acc87d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.3.29-2", + "version": "1.3.29-3", "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/Report.js b/src/libs/actions/Report.js index 8c62046dea5..5f24bcf7c40 100644 --- a/src/libs/actions/Report.js +++ b/src/libs/actions/Report.js @@ -67,6 +67,14 @@ Onyx.connect({ callback: (val) => (isNetworkOffline = lodashGet(val, 'isOffline', false)), }); +let allPersonalDetails; +Onyx.connect({ + key: ONYXKEYS.PERSONAL_DETAILS_LIST, + callback: (val) => { + allPersonalDetails = val || {}; + }, +}); + const allReports = {}; let conciergeChatReportID; const typingWatchTimers = {}; @@ -420,7 +428,7 @@ function openReport(reportID, participantLoginList = [], newReportObject = {}, p const optimisticPersonalDetails = {}; _.map(participantLoginList, (login, index) => { const accountID = newReportObject.participantAccountIDs[index]; - optimisticPersonalDetails[accountID] = { + optimisticPersonalDetails[accountID] = allPersonalDetails[accountID] || { login, accountID, avatar: UserUtils.getDefaultAvatarURL(accountID),