From 9319b6594e6d47f023ec9d9a195e47450c707156 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Tue, 10 Apr 2018 12:20:12 +0200 Subject: [PATCH] LogDir: Go to new file on Problem/Abort too #6442 --- src/gui/owncloudgui.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/owncloudgui.cpp b/src/gui/owncloudgui.cpp index fb68fc0f9..0147eddcc 100644 --- a/src/gui/owncloudgui.cpp +++ b/src/gui/owncloudgui.cpp @@ -203,7 +203,10 @@ void ownCloudGui::slotSyncStateChange(Folder *folder) qCInfo(lcApplication) << "Sync state changed for folder " << folder->remoteUrl().toString() << ": " << result.statusString(); - if (result.status() == SyncResult::Success || result.status() == SyncResult::Error) { + if (result.status() == SyncResult::Success + || result.status() == SyncResult::Problem + || result.status() == SyncResult::SyncAbortRequested + || result.status() == SyncResult::Error) { Logger::instance()->enterNextLogFile(); }