Update readme and only set Invidious storyboards when Invidious logic is called
This commit is contained in:
parent
2991e8e799
commit
c7762852f2
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue