mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Restoration items should appear in the sync protocol
When an item is downloaded because it is restored, it shall be shown in the sync protocol. (It is also going to be shown in the not synchronized for a short while, but that's fine)
This commit is contained in:
parent
4a4d4f9bb7
commit
a902726938
@ -197,7 +197,7 @@ public:
|
||||
*/
|
||||
bool showInProtocolTab() const
|
||||
{
|
||||
return !showInIssuesTab()
|
||||
return (!showInIssuesTab() || _status == SyncFileItem::Restoration)
|
||||
// Don't show conflicts that were resolved as "not a conflict after all"
|
||||
&& !(_instruction == CSYNC_INSTRUCTION_CONFLICT && _status == SyncFileItem::Success);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user