diff --git a/README.md b/README.md index 6732bc568..f7c199c57 100644 --- a/README.md +++ b/README.md @@ -33,14 +33,14 @@ At this time, here is the list of things to do/need to do: - [x] Most Popular Page - [x] Playlist View - [x] Video Watch Page (Recommendations, Comments) -- [ ] Video player logic (Switching formats / quality, live video, fallback logic) +- [x] Video player logic (Switching formats / quality, live video, fallback logic) - [x] Playlist logic (Autoplay next video, shuffle list) - [x] Database Setup and Logic (Updating and creating data) - [x] Settings Page -- [ ] Subscriptions Page and Logic +- [x] Subscriptions Page and Logic - [ ] Playlists Page (Will allow for creating user playlists. Will replace the "Favorites" Page) -- [ ] History Page and Logic -- [ ] Profile Page and Logic +- [x] History Page and Logic +- [x] Profile Page and Logic - [ ] Misc. Adjustments and Settings - [ ] Packaging and Testing diff --git a/src/renderer/views/Watch/Watch.js b/src/renderer/views/Watch/Watch.js index 91f1d54c3..468425b51 100644 --- a/src/renderer/views/Watch/Watch.js +++ b/src/renderer/views/Watch/Watch.js @@ -170,8 +170,6 @@ export default Vue.extend({ }, mounted: function () { this.videoId = this.$route.params.id - this.videoStoryboardSrc = `${this.invidiousInstance}/api/v1/storyboards/${this.videoId}?height=90` - this.activeFormat = this.defaultVideoFormat this.useTheatreMode = this.defaultTheatreMode @@ -346,6 +344,7 @@ export default Vue.extend({ } this.dashSrc = this.createInvidiousDashManifest() + this.videoStoryboardSrc = `${this.invidiousInstance}/api/v1/storyboards/${this.videoId}?height=90` this.$store .dispatch('invidiousGetVideoInformation', this.videoId)