From b5878572aaf005b6e5dd787fe25754b957aa10af Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Sat, 22 Jun 2024 17:52:09 +0200 Subject: [PATCH] fix loading configu url from modpackinfo --- ModpackUpdater/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModpackUpdater/Form1.cs b/ModpackUpdater/Form1.cs index 9db8e18..d55124e 100644 --- a/ModpackUpdater/Form1.cs +++ b/ModpackUpdater/Form1.cs @@ -52,7 +52,7 @@ public partial class Form1 try { modpackInfo = ModpackInfo.TryLoad(folderPath); - RadTextBoxControl_ModpackConfig.Text = modpackInfo.ExtrasKey; + RadTextBoxControl_ModpackConfig.Text = modpackInfo.ConfigUrl; radTextBoxControl_InstallKey.Text = modpackInfo.ExtrasKey; } catch