diff --git a/ModpackUpdater/Form1.cs b/ModpackUpdater/Form1.cs index c9a0ec2..e7c20c4 100644 --- a/ModpackUpdater/Form1.cs +++ b/ModpackUpdater/Form1.cs @@ -248,15 +248,11 @@ public partial class Form1 private void RadButton_PasteModpackConfig_Click(object sender, EventArgs e) { - var text = Clipboard.GetText(); - if (text.StartsWith("http")) - LoadUpdateConfigFile(text); + LoadUpdateConfigFile(Clipboard.GetText()); } private void RadButton_PasteInstallKey_Click(object sender, EventArgs e) { - if (modpackInfo == null) - return; LoadInstallKey(Clipboard.GetText()); }