fix cloudToken

This commit is contained in:
Michael Zanetti 2021-01-08 22:07:34 +01:00
parent 2ad3d8f74c
commit 95e9d7d0f4

View File

@ -148,7 +148,7 @@ void PushNotifications::OnTokenReceived(const char *token)
// On Android, both, core and cloud use the same token // On Android, both, core and cloud use the same token
m_coreToken = QString(token); m_coreToken = QString(token);
emit coreTokenChanged(); emit coreTokenChanged();
m_cloudToken = m_cloudToken; m_cloudToken = m_coreToken;
emit cloudTokenChanged(); emit cloudTokenChanged();
} }
#endif #endif