winlin

fix the config bug.

@@ -4751,7 +4751,7 @@ double SrsConfig::get_send_min_interval(string vhost) @@ -4751,7 +4751,7 @@ double SrsConfig::get_send_min_interval(string vhost)
4751 } 4751 }
4752 4752
4753 conf = conf->get("play"); 4753 conf = conf->get("play");
4754 - if (!conf || conf->arg0().empty()) { 4754 + if (!conf) {
4755 return DEFAULT; 4755 return DEFAULT;
4756 } 4756 }
4757 4757
@@ -4773,7 +4773,7 @@ bool SrsConfig::get_reduce_sequence_header(string vhost) @@ -4773,7 +4773,7 @@ bool SrsConfig::get_reduce_sequence_header(string vhost)
4773 } 4773 }
4774 4774
4775 conf = conf->get("play"); 4775 conf = conf->get("play");
4776 - if (!conf || conf->arg0().empty()) { 4776 + if (!conf) {
4777 return DEFAULT; 4777 return DEFAULT;
4778 } 4778 }
4779 4779