From 48f8bbcb91fb19b9b39f81596c8418be239980c1 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 3 Jun 2015 17:24:43 +0200 Subject: [PATCH] Added support for HTTP prefixes without $ symbol. --- src/output/output_http.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/output/output_http.cpp b/src/output/output_http.cpp index d4e088d9..84bdcdd3 100644 --- a/src/output/output_http.cpp +++ b/src/output/output_http.cpp @@ -57,6 +57,8 @@ namespace Mist { streamname = url.substr(found, found_suf - found); return true; } + }else{ + return (url.substr(0, m.size()) == m); } return false; }