This commit is contained in:
copycat-killer 2015-11-12 11:51:53 +01:00
parent da1410677b
commit 11e448e5e2
1 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ local function worker(args)
mpd_now = { mpd_now = {
state = "N/A", state = "N/A",
file = "N/A", file = "N/A",
name = "N/A",
artist = "N/A", artist = "N/A",
title = "N/A", title = "N/A",
album = "N/A", album = "N/A",
@ -71,6 +72,7 @@ local function worker(args)
for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
if k == "state" then mpd_now.state = v if k == "state" then mpd_now.state = v
elseif k == "file" then mpd_now.file = v elseif k == "file" then mpd_now.file = v
elseif k == "Name" then mpd_now.name = escape_f(v)
elseif k == "Artist" then mpd_now.artist = escape_f(v) elseif k == "Artist" then mpd_now.artist = escape_f(v)
elseif k == "Title" then mpd_now.title = escape_f(v) elseif k == "Title" then mpd_now.title = escape_f(v)
elseif k == "Album" then mpd_now.album = escape_f(v) elseif k == "Album" then mpd_now.album = escape_f(v)