From e6556b07834ae194f0c54de214bf6ded2d019d70 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 17 Oct 2013 13:04:30 +0200 Subject: [PATCH] Fix rest of Erik stuff. --- src/controller/controller_streams.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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";