Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Duplicati/Library/AutoUpdater/UpdaterManager.cs')
-rw-r--r--Duplicati/Library/AutoUpdater/UpdaterManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/Library/AutoUpdater/UpdaterManager.cs b/Duplicati/Library/AutoUpdater/UpdaterManager.cs
index 852eff04c..e17f1464b 100644
--- a/Duplicati/Library/AutoUpdater/UpdaterManager.cs
+++ b/Duplicati/Library/AutoUpdater/UpdaterManager.cs
@@ -21,7 +21,7 @@ using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Duplicati.Library.Interface;
-using Duplicati.Library.IO;
+using Duplicati.Library.Common.IO;
namespace Duplicati.Library.AutoUpdater
{
@@ -406,7 +406,7 @@ namespace Duplicati.Library.AutoUpdater
{
var res = new List<KeyValuePair<string, UpdateInfo>>();
if (INSTALLDIR != null)
- foreach (var folder in SystemIO.IO_OS(Utility.Utility.IsClientWindows).GetDirectories(INSTALLDIR))
+ foreach (var folder in SystemIO.IO_OS.GetDirectories(INSTALLDIR))
{
var r = ReadInstalledManifest(folder);
if (r != null)