diff --git a/src/components/VideoItem.vue b/src/components/VideoItem.vue
index de740087..3c11a2f6 100644
--- a/src/components/VideoItem.vue
+++ b/src/components/VideoItem.vue
@@ -8,6 +8,7 @@
v: item.url.substr(-11),
...(playlistId && { list: playlistId }),
...(index >= 0 && { index: index + 1 }),
+ ...(preferListen && { listen: 1 }),
},
}"
>
@@ -99,13 +100,13 @@
v: item.url.substr(-11),
...(playlistId && { list: playlistId }),
...(index >= 0 && { index: index + 1 }),
- listen: '1',
+ ...(!preferListen && { listen: 1 }),
},
}"
- :aria-label="'Listen to ' + title"
- :title="'Listen to ' + title"
+ :aria-label="preferListen ? title : 'Listen to ' + title"
+ :title="preferListen ? title : 'Listen to ' + title"
>
-
+