From 7861eb25c2cf45c9da68460a6b73a5aefa11c487 Mon Sep 17 00:00:00 2001 From: andrew Date: Thu, 17 Aug 2023 22:36:05 +0930 Subject: [PATCH] Improve param naming for isPushEnabled --- .../notifications/PushRegistryV1.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libsession/src/main/java/org/session/libsession/messaging/sending_receiving/notifications/PushRegistryV1.kt b/libsession/src/main/java/org/session/libsession/messaging/sending_receiving/notifications/PushRegistryV1.kt index ac5fce6d50..1599dd93d5 100644 --- a/libsession/src/main/java/org/session/libsession/messaging/sending_receiving/notifications/PushRegistryV1.kt +++ b/libsession/src/main/java/org/session/libsession/messaging/sending_receiving/notifications/PushRegistryV1.kt @@ -28,12 +28,12 @@ object PushRegistryV1 { fun register( device: Device, - isUsingFCM: Boolean = TextSecurePreferences.isPushEnabled(context), + isPushEnabled: Boolean = TextSecurePreferences.isPushEnabled(context), token: String? = TextSecurePreferences.getPushToken(context), publicKey: String? = TextSecurePreferences.getLocalNumber(context), legacyGroupPublicKeys: Collection = MessagingModuleConfiguration.shared.storage.getAllClosedGroupPublicKeys() ): Promise<*, Exception> = when { - isUsingFCM -> retryIfNeeded(maxRetryCount) { + isPushEnabled -> retryIfNeeded(maxRetryCount) { Log.d(TAG, "register() called") doRegister(token, publicKey, device, legacyGroupPublicKeys) } fail { exception -> @@ -99,17 +99,17 @@ object PushRegistryV1 { fun subscribeGroup( closedGroupPublicKey: String, - isUsingFCM: Boolean = TextSecurePreferences.isPushEnabled(context), + isPushEnabled: Boolean = TextSecurePreferences.isPushEnabled(context), publicKey: String = MessagingModuleConfiguration.shared.storage.getUserPublicKey()!! - ) = if (isUsingFCM) { + ) = if (isPushEnabled) { performGroupOperation("subscribe_closed_group", closedGroupPublicKey, publicKey) } else emptyPromise() fun unsubscribeGroup( closedGroupPublicKey: String, - isUsingFCM: Boolean = TextSecurePreferences.isPushEnabled(context), + isPushEnabled: Boolean = TextSecurePreferences.isPushEnabled(context), publicKey: String = MessagingModuleConfiguration.shared.storage.getUserPublicKey()!! - ) = if (isUsingFCM) { + ) = if (isPushEnabled) { performGroupOperation("unsubscribe_closed_group", closedGroupPublicKey, publicKey) } else emptyPromise()