[BF] for Linux mosquitto_sub

This commit is contained in:
BlubbFish 2017-09-24 10:45:45 +00:00
parent a6b0c80e5b
commit 5ef7d21865
2 changed files with 1 additions and 1 deletions

View File

@ -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;