1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-14 20:31:56 +00:00

fix bug of hls conf detect

This commit is contained in:
winlin 2013-11-28 09:14:56 +08:00
parent 3877ab0ff2
commit 005f821441

View file

@ -689,7 +689,7 @@ int SrsHls::reopen()
// try to open the HLS muxer
SrsConfDirective* conf = config->get_hls(vhost);
if (!conf || conf->arg0() == "off") {
if (conf && conf->arg0() == "off") {
return ret;
}