mirror of
https://github.com/TeamPiped/Piped.git
synced 2026-04-04 14:56:58 +00:00
feat: respect listen mode in recommended videos (#3430)
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
:item="related"
|
||||
:index="index"
|
||||
:playlist-id="playlistId"
|
||||
:prefer-listen="preferListen"
|
||||
height="94"
|
||||
width="168"
|
||||
/>
|
||||
@@ -15,6 +16,7 @@
|
||||
<script>
|
||||
import { nextTick } from "vue";
|
||||
import VideoItem from "./VideoItem.vue";
|
||||
|
||||
export default {
|
||||
components: { VideoItem },
|
||||
props: {
|
||||
@@ -30,6 +32,10 @@ export default {
|
||||
type: Number,
|
||||
required: true,
|
||||
},
|
||||
preferListen: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
playlist: {
|
||||
|
||||
Reference in New Issue
Block a user