webui: handle playback_pos response with empty contents
This commit is contained in:
parent
b9444658fb
commit
771275cf84
|
@ -294,7 +294,12 @@ class RemiApp(App):
|
||||||
except api.APIError:
|
except api.APIError:
|
||||||
playback_pos = None
|
playback_pos = None
|
||||||
|
|
||||||
if playback_pos:
|
if all([
|
||||||
|
playback_pos,
|
||||||
|
isinstance(playback_pos, dict),
|
||||||
|
playback_pos["current"],
|
||||||
|
playback_pos["total"],
|
||||||
|
]):
|
||||||
slider_pos = playback_pos["current"] / playback_pos["total"] * 100
|
slider_pos = playback_pos["current"] / playback_pos["total"] * 100
|
||||||
current = seconds_to_timestamp(playback_pos["current"])
|
current = seconds_to_timestamp(playback_pos["current"])
|
||||||
total = seconds_to_timestamp(playback_pos["total"])
|
total = seconds_to_timestamp(playback_pos["total"])
|
||||||
|
|
Loading…
Reference in New Issue