From b1f69fec924a659c13b08e880af68c2b820cd6f9 Mon Sep 17 00:00:00 2001 From: Maboroshy Date: Sun, 17 Sep 2017 12:18:25 +0400 Subject: [PATCH] Fixed folder setting --- inbox/inbox.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inbox/inbox.qml b/inbox/inbox.qml index d0bbae9..b32357d 100644 --- a/inbox/inbox.qml +++ b/inbox/inbox.qml @@ -95,7 +95,7 @@ Script { var args = [pyScriptPath, '--inbox', inboxPath, - '--folder', script.currentNoteFolderPath(), + '--folder', noteFolder, '--marker', tagMarker] if (scanFolder == true) { @@ -112,6 +112,7 @@ Script { } script.startDetachedProcess(pyCommand, args) + script.log(pyCommand + ' ' + args) script.log('Processing inbox...') }