From 2bd461756ae68c3e0cc58e9d983a729e0b124c32 Mon Sep 17 00:00:00 2001 From: Craig Drummond Date: Mon, 5 Feb 2018 20:05:32 +0000 Subject: [PATCH] Tags not needed to serve files? --- http/httpserver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/httpserver.cpp b/http/httpserver.cpp index aeacd68f2..9221c807f 100644 --- a/http/httpserver.cpp +++ b/http/httpserver.cpp @@ -235,7 +235,7 @@ QByteArray HttpServer::encodeUrl(const QString &file) #endif s.file=file; #endif - return s.isEmpty() ? QByteArray() : encodeUrl(s); + return /*s.isEmpty() ? QByteArray() :*/ encodeUrl(s); } Song HttpServer::decodeUrl(const QString &url) const