mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Merge pull request #2568 from Bnyro/master
Hide watch on odysee button when no lbryId
This commit is contained in:
commit
df08abf356
1 changed files with 5 additions and 1 deletions
|
@ -121,7 +121,11 @@
|
|||
<!-- YouTube -->
|
||||
<WatchOnButton :link="`https://youtu.be/${getVideoId()}`" />
|
||||
<!-- Odysee -->
|
||||
<WatchOnButton :link="`https://odysee.com/${video.lbryId}`" platform="Odysee" />
|
||||
<WatchOnButton
|
||||
v-if="video.lbryId"
|
||||
:link="`https://odysee.com/${video.lbryId}`"
|
||||
platform="Odysee"
|
||||
/>
|
||||
<!-- listen / watch toggle -->
|
||||
<router-link
|
||||
:to="toggleListenUrl"
|
||||
|
|
Loading…
Reference in a new issue