diff --git a/src/lyrics_fetcher.cpp b/src/lyrics_fetcher.cpp index 70be4598..87c87466 100644 --- a/src/lyrics_fetcher.cpp +++ b/src/lyrics_fetcher.cpp @@ -147,7 +147,7 @@ std::string LyricwikiFetcher::unescapeHtmlUtf8(const std::string &data) result += (0x80 | ((n >> 6) & 0x3f)); result += (0x80 | (n & 0x3f)); } - if (n >= 0x80) + else if (n >= 0x80) { result += (0xc0 | ((n >> 6) & 0x1f)); result += (0x80 | (n & 0x3f));