diff -r e2729a990e8b -r c4749a27966d Server/Actions/ActionHarmonyCommand.cs --- a/Server/Actions/ActionHarmonyCommand.cs Tue Aug 30 21:14:18 2016 +0200 +++ b/Server/Actions/ActionHarmonyCommand.cs Wed Aug 31 16:06:47 2016 +0200 @@ -8,6 +8,7 @@ using System.Threading.Tasks; using System.Runtime.Serialization; using System.Windows.Forms; +using CodeProject.Dialog; namespace SharpDisplayManager { @@ -120,6 +121,12 @@ /// void ClickEventHandler(object sender, EventArgs e) { + if (Program.HarmonyConfig == null) + { + ErrBox.Show("No Harmony Hub configuration!"); + return; + } + FormSelectHarmonyCommand dlg = new FormSelectHarmonyCommand(); DialogResult res = CodeProject.Dialog.DlgBox.ShowDialog(dlg); if (res == DialogResult.OK)