[gnote] Fix duplicate condition
- From: Aurimas Černius <aurimasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnote] Fix duplicate condition
- Date: Sat, 18 Dec 2021 20:05:41 +0000 (UTC)
commit 4281b80fa947f2c80cf59f4e1b8727cc9656c206
Author: Aurimas Černius <aurisc4 gmail com>
Date: Sat Dec 18 22:05:12 2021 +0200
Fix duplicate condition
Fixes https://gitlab.gnome.org/GNOME/gnote/-/issues/111
src/synchronization/syncmanager.cpp | 9 ---------
1 file changed, 9 deletions(-)
---
diff --git a/src/synchronization/syncmanager.cpp b/src/synchronization/syncmanager.cpp
index ea72f7b6..982b2c9e 100644
--- a/src/synchronization/syncmanager.cpp
+++ b/src/synchronization/syncmanager.cpp
@@ -442,15 +442,6 @@ namespace sync {
void SyncManager::handle_note_saved_or_deleted(const NoteBase::Ptr &)
{
if(m_sync_thread == NULL && m_autosync_timeout_pref_minutes > 0) {
- Glib::TimeSpan
time_since_last_check(Glib::DateTime::create_now_utc().difference(m_last_background_check));
- Glib::TimeSpan time_until_next_check = sharp::time_span(0, m_current_autosync_timeout_minutes, 0) -
time_since_last_check;
- if(sharp::time_span_total_minutes(time_until_next_check) < 1) {
- DBG_OUT("Note saved or deleted within a minute of next autosync...resetting sync timer");
- m_current_autosync_timeout_minutes = 1;
- m_autosync_timer.reset(m_current_autosync_timeout_minutes * 60000);
- }
- }
- else if(m_sync_thread == NULL && m_autosync_timeout_pref_minutes > 0) {
DBG_OUT("Note saved or deleted...restarting sync timer");
m_last_background_check = Glib::DateTime::create_now_utc();
// Perform a sync one minute after setting change
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]