From 2ec6258ff38747b72f55a0d19370dd5841e3be02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Mon, 18 Jan 2016 01:28:53 +0100 Subject: [PATCH] last-fm.lua: don't use empty album names --- plugins/degesch/last-fm.lua | 4 ++-- 1 file 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