Skip to content

Commit

Permalink
gui/tray: If there are successfully synced file provide raccounts do …
Browse files Browse the repository at this point in the history
…not present "problem" sync icon

Signed-off-by: Claudio Cambra <[email protected]>
  • Loading branch information
claucambra authored and mgallien committed Feb 7, 2025
1 parent e170b0c commit e3f49df
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/gui/owncloudgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,12 @@ void ownCloudGui::slotComputeOverallSyncStatus()
overallStatus != SyncResult::Error &&
overallStatus != SyncResult::SetupError) {
overallStatus = SyncResult::SyncRunning;
} else if (!successFileProviderAccounts.isEmpty() &&
overallStatus != SyncResult::SyncRunning &&
overallStatus != SyncResult::Problem &&
overallStatus != SyncResult::Error &&
overallStatus != SyncResult::SetupError) {
overallStatus = SyncResult::Success;
}
#endif

Expand Down

0 comments on commit e3f49df

Please sign in to comment.