From 7c944468e720fa337cdab63630b3c79cd68ffc84 Mon Sep 17 00:00:00 2001 From: probonopd Date: Wed, 31 Jul 2019 09:12:57 +0000 Subject: [PATCH] Make message less misleading, closes #42 --- src/zsclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zsclient.cpp b/src/zsclient.cpp index 9e07022..c710bf5 100644 --- a/src/zsclient.cpp +++ b/src/zsclient.cpp @@ -898,7 +898,7 @@ namespace zsync2 { // check whether file exists at all, because if not, a full download is required if (!isfile(pathToLocalFile)) { - issueStatusMessage("Cannot find file " + pathToLocalFile + ", triggering full download"); + issueStatusMessage("Cannot find file " + pathToLocalFile); updateAvailable = true; return true; }