Skip to content
Snippets Groups Projects
Commit 0586c2cf authored by Stefan Ceriu's avatar Stefan Ceriu Committed by Stefan Ceriu
Browse files

Revert "Attempt to prevent crashes after expiring background refreshes."

This reverts commit 418daaa9.
parent 51886b0c
No related branches found
No related tags found
No related merge requests found
...@@ -893,11 +893,8 @@ class AppCoordinator: AppCoordinatorProtocol, AuthenticationFlowCoordinatorDeleg ...@@ -893,11 +893,8 @@ class AppCoordinator: AppCoordinatorProtocol, AuthenticationFlowCoordinatorDeleg
// Attempt to stop the background task sync loop cleanly, only if the app not already running // Attempt to stop the background task sync loop cleanly, only if the app not already running
return return
} }
userSession?.clientProxy.stopSync(completion: completion)
MainActor.assumeIsolated { clientProxyObserver = nil
userSession?.clientProxy.stopSync(completion: completion)
clientProxyObserver = nil
}
} }
private func startSync() { private func startSync() {
...@@ -1039,13 +1036,7 @@ class AppCoordinator: AppCoordinatorProtocol, AuthenticationFlowCoordinatorDeleg ...@@ -1039,13 +1036,7 @@ class AppCoordinator: AppCoordinatorProtocol, AuthenticationFlowCoordinatorDeleg
// This is important for the app to keep refreshing in the background // This is important for the app to keep refreshing in the background
scheduleBackgroundAppRefresh() scheduleBackgroundAppRefresh()
/// We have a lot of crashes stemming here which we previously believed are caused by stopSync not being async task.expirationHandler = { [weak self] in
/// on the client proxy side (see the comment on that method). We have now realised that will likely not fix anything but
/// we also noticed this does not crash on the main thread, even though the whole AppCoordinator is on the Main actor.
/// As such, we introduced a MainActor conformance on the expirationHandler but we are also assuming main actor
/// isolated in the `stopSync` method above.
/// https://sentry.tools.element.io/organizations/element/issues/4477794/
task.expirationHandler = { @MainActor [weak self] in
MXLog.info("Background app refresh task is about to expire.") MXLog.info("Background app refresh task is about to expire.")
self?.stopSync(isBackgroundTask: true) { self?.stopSync(isBackgroundTask: true) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment