Fix active call manager.

For real this time.
This commit is contained in:
Cody Henthorne 2024-02-13 12:18:03 -05:00
parent cc40c9d09f
commit 36ea2a7f5d
2 changed files with 2 additions and 2 deletions

View file

@ -236,7 +236,7 @@ class ActiveCallManager(
if (requiresAsyncNotificationLoad) {
notificationDisposable = Single.fromCallable { createNotification(recipient, isVideoCall, skipAvatarLoad = false) }
.observeOn(Schedulers.io())
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribeBy {
notification = it

View file

@ -117,7 +117,7 @@ public final class FeatureFlags {
private static final String CALLING_REACTIONS = "android.calling.reactions";
private static final String NOTIFICATION_THUMBNAIL_BLOCKLIST = "android.notificationThumbnailProductBlocklist";
private static final String CALLING_RAISE_HAND = "android.calling.raiseHand";
private static final String USE_ACTIVE_CALL_MANAGER = "android.calling.useActiveCallManager.3";
private static final String USE_ACTIVE_CALL_MANAGER = "android.calling.useActiveCallManager.4";
private static final String GIF_SEARCH = "global.gifSearch";
private static final String AUDIO_REMUXING = "android.media.audioRemux";