From 3129a7fc91674599c5b84fc58e7a3a351419c381 Mon Sep 17 00:00:00 2001 From: JuanJakobo <34421964+JuanJakobo@users.noreply.github.com> Date: Mon, 22 Feb 2021 16:56:55 +0100 Subject: [PATCH] bufgix: out of range error due to wrong vector --- src/util/nextcloud.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/nextcloud.cpp b/src/util/nextcloud.cpp index 052d101..3be7697 100644 --- a/src/util/nextcloud.cpp +++ b/src/util/nextcloud.cpp @@ -229,7 +229,7 @@ void Nextcloud::downloadFolder(vector &tempItems, int itemID) } else { - Log::writeLog("started download of " + _items.at(itemID).getPath() + " to " + _items.at(itemID).getLocalPath()); + Log::writeLog("started download of " + tempItems.at(itemID).getPath() + " to " + tempItems.at(itemID).getLocalPath()); downloadItem(tempItems, itemID); }