From 71e22ffe2cb736ccb091c75fdb2cd978ea727904 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Thu, 5 Feb 2015 16:46:06 +0100 Subject: [PATCH] Notifications: Fix creation of notification For #2728 --- src/gui/folder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/folder.cpp b/src/gui/folder.cpp index f20186d4ed..4be13c6ef4 100644 --- a/src/gui/folder.cpp +++ b/src/gui/folder.cpp @@ -373,7 +373,7 @@ void Folder::bubbleUpSyncResult() FolderMan::instance()->removeMonitorPath( alias(), path()+item._file ); } - if (!item.hasErrorStatus() && item._direction == SyncFileItem::Down) { + if (!item.hasErrorStatus() && item._direction != SyncFileItem::None) { switch (item._instruction) { case CSYNC_INSTRUCTION_NEW: newItems++;