From 8b2a5a82f21abfbe5c82c86e14bfc853d29c2449 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Sat, 31 Aug 2019 14:45:24 +0200 Subject: [PATCH] parseIcon: use txt & txtS as text fallback --- parse/icon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse/icon.js b/parse/icon.js index 939e74f2..155437fb 100644 --- a/parse/icon.js +++ b/parse/icon.js @@ -3,7 +3,7 @@ const parseIcon = (profile, i) => { const res = { type: i.res || null, - title: i.text || null + title: i.text || i.txt || i.txtS || null } if (i.fg) res.fgColor = i.fg if (i.bg) res.bgColor = i.bg