fix: don't highlight new tokens until analytics initialize (#4990)
This commit is contained in:
parent
eef9a56275
commit
2711ded979
1 changed files with 3 additions and 1 deletions
|
|
@ -77,7 +77,9 @@ class TokensUtil {
|
|||
) {
|
||||
if (!event.eventId.isValidMatrixId ||
|
||||
(MatrixState.pangeaController.subscriptionController.isSubscribed ==
|
||||
false)) {
|
||||
false) ||
|
||||
MatrixState
|
||||
.pangeaController.matrixState.analyticsDataService.isInitializing) {
|
||||
return [];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue