From f11643084558a22ac134ede6c72ff9f4f9c7ba6b Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Fri, 2 Aug 2019 00:28:53 +0200 Subject: [PATCH] movieplayer: use htmlEntityDecode with name in luaGetUrl Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/38583f20ba5e1a5f1b1cea2883ea63e723b519c0 Author: Jacek Jendrzej Date: 2019-08-02 (Fri, 02 Aug 2019) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/movieplayer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index 87a589d2a..d10385364 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -986,6 +986,7 @@ bool CMoviePlayerGui::luaGetUrl(const std::string &script, const std::string &fi } } if (haveurl) { + info.name = htmlEntityDecode(info.name); streamList.push_back(info); } haveurl = false; @@ -1013,6 +1014,7 @@ bool CMoviePlayerGui::luaGetUrl(const std::string &script, const std::string &fi } } if (haveurl) { + info.name = htmlEntityDecode(info.name); streamList.push_back(info); } }