diff options
| author | real-zephex <[email protected]> | 2024-03-17 10:24:40 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-17 10:24:40 +0530 |
| commit | 8526af4fe3c9121e7ef798cf02e47fdeb51c3286 (patch) | |
| tree | 9f655df7cce478f439c6f00516ed10584f3fd603 /src | |
| parent | Added vercel analytics (diff) | |
| download | dramalama-8526af4fe3c9121e7ef798cf02e47fdeb51c3286.tar.xz dramalama-8526af4fe3c9121e7ef798cf02e47fdeb51c3286.zip | |
fix: scrubbing throught the progress bar showed wrong thumbnails. fixed it by removing the thumbnails as the videos need to be stored on mux in order to get the correct thumbnails
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/video/[animeId]/page.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/app/video/[animeId]/page.js b/src/app/video/[animeId]/page.js index e8ec670..44ef429 100644 --- a/src/app/video/[animeId]/page.js +++ b/src/app/video/[animeId]/page.js @@ -30,10 +30,7 @@ export default async function Video({ params }) { load="eager" > <MediaProvider /> - <PlyrLayout - thumbnails="https://image.mux.com/VZtzUzGRv02OhRnZCxcNg49OilvolTqdnFLEqBsTwaxU/storyboard.vtt" - icons={plyrLayoutIcons} - /> + <PlyrLayout icons={plyrLayoutIcons} /> </MediaPlayer> </div> </div> |