You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Issue**
* Sync
* Background app
* Resume app
* ANR
This is caused by `updateDeckList` being called on the main thread
and `isOpenUnsafe` blocking until the sync completed, blocking the main
thread.
**Fix**
* Launch `updateDeckList` on the background thread so it does not ANR
* Add TODOs to avoid calling the method entirely
Fixes 18886
0 commit comments