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

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'SelectModsForm.cs')
-rw-r--r--SelectModsForm.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/SelectModsForm.cs b/SelectModsForm.cs
index e87a41c1..3c9d7753 100644
--- a/SelectModsForm.cs
+++ b/SelectModsForm.cs
@@ -23,12 +23,7 @@ namespace com.clusterrr.hakchi_gui
var modsList = new List<string>();
if (loadInstalledMods && MainForm.Clovershell.IsOnline)
{
- var mods = new MemoryStream();
- MainForm.Clovershell.Execute("ls /var/lib/hakchi/hmod/uninstall-*", null, mods, null, 1000, true);
- mods.Seek(0, SeekOrigin.Begin);
- var modsarr = new byte[mods.Length];
- mods.Read(modsarr, 0, (int)mods.Length);
- var modsstr = Encoding.UTF8.GetString(modsarr, 0, modsarr.Length);
+ var modsstr = MainForm.Clovershell.ExecuteSimple("ls /var/lib/hakchi/hmod/uninstall-*", 1000, true);
var installedMods = modsstr.Split(new char[] { '\n' }, StringSplitOptions.RemoveEmptyEntries);
foreach (var mod in installedMods)
{