From 2d7f145a256649b5461d4d8a2996744a565fb563 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 18 Oct 2023 11:40:04 +0200 Subject: [PATCH] Replaced using gitFetch() with gitPull() --- worker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.cpp b/worker.cpp index dbb6268..4e79550 100644 --- a/worker.cpp +++ b/worker.cpp @@ -728,7 +728,7 @@ bool Worker::filesToUpdate() { // always execute contents of opkg_commands-file m_filesToUpdate << "etc/psa_update/opkg_commands"; - if (std::optional changes = m_gc.gitFetch()) { + if (std::optional changes = m_gc.gitPull()) { stopProgressLoop(); int progress = (m_mainWindow->progressValue()/10) + 10; setProgress(progress);