From 31919ee9e5e42169f90c50643fd6ce93e670b785 Mon Sep 17 00:00:00 2001 From: ThomasSession Date: Mon, 7 Oct 2024 14:58:18 +1100 Subject: [PATCH] Removed test line --- .../thoughtcrime/securesms/notifications/HuaweiTokenFetcher.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/huawei/kotlin/org/thoughtcrime/securesms/notifications/HuaweiTokenFetcher.kt b/app/src/huawei/kotlin/org/thoughtcrime/securesms/notifications/HuaweiTokenFetcher.kt index 845dfa9459..f0ce294596 100644 --- a/app/src/huawei/kotlin/org/thoughtcrime/securesms/notifications/HuaweiTokenFetcher.kt +++ b/app/src/huawei/kotlin/org/thoughtcrime/securesms/notifications/HuaweiTokenFetcher.kt @@ -25,8 +25,7 @@ class HuaweiTokenFetcher @Inject constructor( // https://developer.huawei.com/consumer/en/doc/development/HMS-Guides/push-basic-capability#h2-1576218800370 // getToken may return an empty string, if so HuaweiPushService#onNewToken will be called. withContext(Dispatchers.IO) { - val test = getToken(APP_ID, TOKEN_SCOPE) - test + getToken(APP_ID, TOKEN_SCOPE) } } }