diff options
Diffstat (limited to 'plugins/degesch/last-fm.lua')
-rw-r--r-- | plugins/degesch/last-fm.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/degesch/last-fm.lua b/plugins/degesch/last-fm.lua index 20843e6..5c836ca 100644 --- a/plugins/degesch/last-fm.lua +++ b/plugins/degesch/last-fm.lua @@ -61,8 +61,8 @@ local process = function (buffer, data, action) -- Need to make some sense of the XML automatically converted to JSON local text_of = function (node) - if type (node) == "table" then return node["#text"] end - return node + if type (node) ~= "table" then return node end + return node["#text"] ~= "" and node["#text"] or nil end local name, artist, album |