riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
app/src/main/java/cn/flightfeather/thirdappmodule/util/push/LoginInitializer.kt
@@ -19,15 +19,15 @@
        if (isLogin) {
            if (!isBindAccount) {
                PushService.bindAccount(accountName) {
                    sharedPre.edit().putBoolean("isBindAccount", true).apply()
                }
//                PushService.bindAccount(accountName) {
//                    sharedPre.edit().putBoolean("isBindAccount", true).apply()
//                }
            }
        } else {
            if (isBindAccount) {
                PushService.unBindAccount {
                    sharedPre.edit().putBoolean("isBindAccount", false).apply()
                }
//                PushService.unBindAccount {
//                    sharedPre.edit().putBoolean("isBindAccount", false).apply()
//                }
            }
        }
    }