diff options
Diffstat (limited to 'server/connectionHTTP.c')
-rw-r--r-- | server/connectionHTTP.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/connectionHTTP.c b/server/connectionHTTP.c index 63eb22e..d420c25 100644 --- a/server/connectionHTTP.c +++ b/server/connectionHTTP.c @@ -192,7 +192,7 @@ bool cConnectionHTTP::ProcessRequest(void) if (m_ChannelList) return Respond("%s", true, m_ChannelList->HttpHeader().c_str()); else if (m_Channel != NULL) { - if (ProvidesChannel(m_Channel, 0)) { + if (ProvidesChannel(m_Channel, StreamdevServerSetup.HTTPPriority)) { if (m_StreamType == stEXT) { // TODO return Respond("HTTP/1.0 200 OK") |