diff --git a/src/controller/controller_streams.cpp b/src/controller/controller_streams.cpp index 2d7318cd..4836cf05 100644 --- a/src/controller/controller_streams.cpp +++ b/src/controller/controller_streams.cpp @@ -73,7 +73,10 @@ namespace Controller { std::string mistfix = Util::getMyPath() + "MistDTSCFix"; tmp_cmd[0] = (char*)mistfix.c_str(); tmp_cmd[1] = (char*)URL.c_str(); - Util::Procs::StartPiped("MistFixer", tmp_cmd, 0, 0, 0); + int out = 1; + int err = 2; + Util::Procs::StartPiped("MistFixer", tmp_cmd, 0, &out, &err); + data.removeMember("meta"); } if (Util::epoch() - lastBuffer[name] > 5){ data["error"] = "Available";