Skip to content

Commit 3ffe34d

Browse files
authored
Merge pull request #9384 from Expensify/OSBotify-cherry-pick-staging-9381
🍒 Cherry pick PR #9381 to staging 🍒
2 parents 47c439d + 37d1768 commit 3ffe34d

File tree

8 files changed

+9
-12
lines changed

8 files changed

+9
-12
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ android {
152152
minSdkVersion rootProject.ext.minSdkVersion
153153
targetSdkVersion rootProject.ext.targetSdkVersion
154154
multiDexEnabled rootProject.ext.multiDexEnabled
155-
versionCode 1001017500
156-
versionName "1.1.75-0"
155+
versionCode 1001017501
156+
versionName "1.1.75-1"
157157
}
158158
splits {
159159
abi {

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dict>
3131
</array>
3232
<key>CFBundleVersion</key>
33-
<string>1.1.75.0</string>
33+
<string>1.1.75.1</string>
3434
<key>ITSAppUsesNonExemptEncryption</key>
3535
<false/>
3636
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.1.75.0</string>
22+
<string>1.1.75.1</string>
2323
</dict>
2424
</plist>

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "1.1.75-0",
3+
"version": "1.1.75-1",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/libs/PusherUtils.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ import CONST from '../CONST';
1010
* @param {String} eventName
1111
* @param {String} accountID
1212
* @param {Function} onEvent
13-
* @param {Boolean} isChunked
1413
*/
15-
function subscribeToPrivateUserChannelEvent(eventName, accountID, onEvent, isChunked = false) {
14+
function subscribeToPrivateUserChannelEvent(eventName, accountID, onEvent) {
1615
const pusherChannelName = `${CONST.PUSHER.PRIVATE_USER_CHANNEL_PREFIX}${accountID}${CONFIG.PUSHER.SUFFIX}`;
1716

1817
/**
@@ -40,7 +39,7 @@ function subscribeToPrivateUserChannelEvent(eventName, accountID, onEvent, isChu
4039
function onSubscriptionFailed(error) {
4140
Log.hmmm('Failed to subscribe to Pusher channel', false, {error, pusherChannelName, eventName});
4241
}
43-
Pusher.subscribe(pusherChannelName, eventName, onEventPush, isChunked, onPusherResubscribeToPrivateUserChannel)
42+
Pusher.subscribe(pusherChannelName, eventName, onEventPush, onPusherResubscribeToPrivateUserChannel)
4443
.catch(onSubscriptionFailed);
4544
}
4645

src/libs/actions/Report.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,6 @@ function subscribeToUserEvents() {
618618
Pusher.TYPE.REPORT_COMMENT_CHUNK,
619619
currentUserAccountID,
620620
pushJSON => updateReportWithNewAction(pushJSON.reportID, pushJSON.reportAction, pushJSON.notificationPreference),
621-
true,
622621
);
623622

624623
// Live-update a report's actions when an 'edit comment' event is received.
@@ -631,7 +630,6 @@ function subscribeToUserEvents() {
631630
Pusher.TYPE.REPORT_COMMENT_EDIT_CHUNK,
632631
currentUserAccountID,
633632
pushJSON => updateReportActionMessage(pushJSON.reportID, pushJSON.sequenceNumber, pushJSON.message),
634-
true,
635633
);
636634
}
637635

src/libs/actions/User.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function subscribeToUserEvents() {
314314
SequentialQueue.getCurrentRequest().then(() => {
315315
Onyx.update(pushJSON.onyxData);
316316
});
317-
}, true);
317+
});
318318

319319
// Live-update an user's preferred locale
320320
Pusher.subscribe(pusherChannelName, Pusher.TYPE.PREFERRED_LOCALE, (pushJSON) => {

0 commit comments

Comments
 (0)