Commit 62605f27 authored by Pierre Ynard's avatar Pierre Ynard

youtube.lua: fix encoded characters in author name (API)

With google accounts it's happening now
parent 12a302e9
......@@ -269,7 +269,7 @@ function parse()
local artist = string.match( line, "&author=([^&]*)" )
if artist then
artist = string.gsub( artist, "+", " " )
-- Not sure if there may be encoded characters to decode here
artist = vlc.strings.decode_uri( artist )
end
local arturl = string.match( line, "&thumbnail_url=([^&]*)" )
if arturl then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment