Revert "[modules/spotify] properly initialize widgets"

This reverts commit aa6238a5c6.
This commit is contained in:
tobi-wan-kenobi 2020-09-15 20:27:50 +02:00
parent e42f09b27e
commit 8a4fc40947

View file

@ -68,8 +68,7 @@ class Module(core.module.Module):
}
widget.set("state", "next")
elif widget_name == "spotify.song":
widget.set("state", "song")
widget.full_text(self.__song)
pass
else:
raise KeyError(
"The spotify module does not have a {widget_name!r} widget".format(
@ -116,6 +115,9 @@ class Module(core.module.Module):
widget.set("state", "playing")
else:
widget.set("state", "paused")
elif widget.name == "spotify.song":
widget.set("state", "song")
widget.full_text(self.__song)
except Exception as e:
logging.exception(e)