Update readme and only set Invidious storyboards when Invidious logic is called

This commit is contained in:
Preston 2020-09-07 11:33:10 -04:00
parent 2991e8e799
commit c7762852f2
2 changed files with 5 additions and 6 deletions

View File

@ -33,14 +33,14 @@ At this time, here is the list of things to do/need to do:
- [x] Most Popular Page - [x] Most Popular Page
- [x] Playlist View - [x] Playlist View
- [x] Video Watch Page (Recommendations, Comments) - [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] Playlist logic (Autoplay next video, shuffle list)
- [x] Database Setup and Logic (Updating and creating data) - [x] Database Setup and Logic (Updating and creating data)
- [x] Settings Page - [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) - [ ] Playlists Page (Will allow for creating user playlists. Will replace the "Favorites" Page)
- [ ] History Page and Logic - [x] History Page and Logic
- [ ] Profile Page and Logic - [x] Profile Page and Logic
- [ ] Misc. Adjustments and Settings - [ ] Misc. Adjustments and Settings
- [ ] Packaging and Testing - [ ] Packaging and Testing

View File

@ -170,8 +170,6 @@ export default Vue.extend({
}, },
mounted: function () { mounted: function () {
this.videoId = this.$route.params.id this.videoId = this.$route.params.id
this.videoStoryboardSrc = `${this.invidiousInstance}/api/v1/storyboards/${this.videoId}?height=90`
this.activeFormat = this.defaultVideoFormat this.activeFormat = this.defaultVideoFormat
this.useTheatreMode = this.defaultTheatreMode this.useTheatreMode = this.defaultTheatreMode
@ -346,6 +344,7 @@ export default Vue.extend({
} }
this.dashSrc = this.createInvidiousDashManifest() this.dashSrc = this.createInvidiousDashManifest()
this.videoStoryboardSrc = `${this.invidiousInstance}/api/v1/storyboards/${this.videoId}?height=90`
this.$store this.$store
.dispatch('invidiousGetVideoInformation', this.videoId) .dispatch('invidiousGetVideoInformation', this.videoId)