summaryrefslogtreecommitdiff
path: root/packages/frontend/src/widgets/WidgetJobQueue.vue
diff options
context:
space:
mode:
authorMarie <marie@kaifa.ch>2024-01-09 10:35:10 +0100
committerMarie <marie@kaifa.ch>2024-01-09 10:35:10 +0100
commitd974b30e56750366c11633203bb2ca22417030cf (patch)
treebeed0153867bf89547c8ce8ea5f7a4e96c7e8cfa /packages/frontend/src/widgets/WidgetJobQueue.vue
parentfix: icons (diff)
parentupdate sound (diff)
downloadsharkey-d974b30e56750366c11633203bb2ca22417030cf.tar.gz
sharkey-d974b30e56750366c11633203bb2ca22417030cf.tar.bz2
sharkey-d974b30e56750366c11633203bb2ca22417030cf.zip
merge: upstream
Diffstat (limited to 'packages/frontend/src/widgets/WidgetJobQueue.vue')
-rw-r--r--packages/frontend/src/widgets/WidgetJobQueue.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/widgets/WidgetJobQueue.vue b/packages/frontend/src/widgets/WidgetJobQueue.vue
index e5d8a3e5ea..01a79e7d77 100644
--- a/packages/frontend/src/widgets/WidgetJobQueue.vue
+++ b/packages/frontend/src/widgets/WidgetJobQueue.vue
@@ -123,7 +123,7 @@ const onStats = (stats) => {
current[domain].delayed = stats[domain].delayed;
if (current[domain].waiting > 0 && widgetProps.sound && jammedAudioBuffer.value && !jammedSoundNodePlaying.value) {
- const soundNode = sound.createSourceNode(jammedAudioBuffer.value, 1)?.soundSource;
+ const soundNode = sound.createSourceNode(jammedAudioBuffer.value, {}).soundSource;
if (soundNode) {
jammedSoundNodePlaying.value = true;
soundNode.onended = () => jammedSoundNodePlaying.value = false;