diff options
author | Florrie <towerofnix@gmail.com> | 2020-02-04 21:53:30 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2020-02-04 21:53:30 -0400 |
commit | 3789eab2f1322206011e89fa5e1f4afeacad0099 (patch) | |
tree | 8b405e252911b25b25cec39eee28b4c02aa851f1 | |
parent | 01fe08528446f7dbc64c2b662967796ed7607d01 (diff) |
get rid of a dead argument
-rw-r--r-- | ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.js b/ui.js index 1789c35..9dba6d6 100644 --- a/ui.js +++ b/ui.js @@ -508,7 +508,7 @@ class AppElement extends FocusElement { handleReceivedTimeData(data, queuePlayer) { const PIE = this.getPlaybackInfoElementForQueuePlayer(queuePlayer) if (PIE) { - PIE.updateProgress(data) + PIE.updateProgress() } if (queuePlayer === this.SQP) { |