Fix always on streams being misdetected when set to false. -_-
This commit is contained in:
parent
7b52f0cd92
commit
c2fd7af109
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ namespace Controller {
|
|||
}
|
||||
}
|
||||
//new style always on
|
||||
if (data.isMember("always_on")){
|
||||
if (data.isMember("always_on") && data["always_on"].asBool()){
|
||||
INFO_MSG("Starting always-on input %s: %s", name.c_str(), URL.c_str());
|
||||
std::map<std::string, std::string> empty_overrides;
|
||||
pid_t program = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue