diff --git a/Mqtt-Dashboard/Connector/Mosquitto.cs b/Mqtt-Dashboard/Connector/Mosquitto.cs index 90eb61f..bb399ec 100644 --- a/Mqtt-Dashboard/Connector/Mosquitto.cs +++ b/Mqtt-Dashboard/Connector/Mosquitto.cs @@ -30,7 +30,7 @@ namespace Dashboard.Connector { if (this.settings.ContainsKey("key")) { args += "--key " + this.settings["key"] + " "; } - this.p.StartInfo.Arguments = args+"-t /# -v -d"; + this.p.StartInfo.Arguments = args+"-t \"#\" -v -d"; this.p.StartInfo.CreateNoWindow = true; this.p.StartInfo.UseShellExecute = false; this.p.StartInfo.RedirectStandardOutput = true; diff --git a/Mqtt-Dashboard/bin/Release/Dashboard.exe b/Mqtt-Dashboard/bin/Release/Dashboard.exe index 0ed120a..01ceecb 100644 Binary files a/Mqtt-Dashboard/bin/Release/Dashboard.exe and b/Mqtt-Dashboard/bin/Release/Dashboard.exe differ