Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Daniel Foré
Epiphany
Commits
b5bf5d6c
Commit
b5bf5d6c
authored
May 07, 2018
by
Gabriel Ivascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync-service: Fix crash when signing out before the initial sync starts
parent
083c9bc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
lib/sync/ephy-sync-service.c
lib/sync/ephy-sync-service.c
+4
-3
No files found.
lib/sync/ephy-sync-service.c
View file @
b5bf5d6c
...
...
@@ -2797,9 +2797,10 @@ void
ephy_sync_service_start_sync
(
EphySyncService
*
self
)
{
g_assert
(
EPHY_IS_SYNC_SERVICE
(
self
));
g_assert
(
ephy_sync_utils_user_is_signed_in
());
g_assert
(
self
->
sync_periodically
);
ephy_sync_service_sync_internal
(
self
);
ephy_sync_service_schedule_periodical_sync
(
self
);
if
(
ephy_sync_utils_user_is_signed_in
())
{
ephy_sync_service_sync_internal
(
self
);
ephy_sync_service_schedule_periodical_sync
(
self
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment