Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Element X Ios
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
element-hq
Element X Ios
Commits
0586c2cf
Commit
0586c2cf
authored
1 week ago
by
Stefan Ceriu
Committed by
Stefan Ceriu
1 week ago
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Attempt to prevent crashes after expiring background refreshes."
This reverts commit
418daaa9
.
parent
51886b0c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ElementX/Sources/Application/AppCoordinator.swift
+3
-12
3 additions, 12 deletions
ElementX/Sources/Application/AppCoordinator.swift
with
3 additions
and
12 deletions
ElementX/Sources/Application/AppCoordinator.swift
+
3
−
12
View file @
0586c2cf
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment