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) } } }