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 517fb2e..bec9bef 100644 --- a/server/connectionHTTP.c +++ b/server/connectionHTTP.c @@ -468,7 +468,7 @@ cMenuList* cConnectionHTTP::MenuListFromString(const std::string& Path, const st (Filebase.empty() && Fileext.empty())) { iterator = new cListAll(); } else if (Filebase.compare("recordings") == 0) { - iterator = new cRecordingsIterator(); + iterator = new cRecordingsIterator(m_StreamType); } if (iterator) { |