diff --git a/src/renderer/views/Watch/Watch.js b/src/renderer/views/Watch/Watch.js index 31e8e5ab..86c12a26 100644 --- a/src/renderer/views/Watch/Watch.js +++ b/src/renderer/views/Watch/Watch.js @@ -311,7 +311,11 @@ export default Vue.extend({ } if (typeof result.player_response.streamingData.adaptiveFormats !== 'undefined') { - this.dashSrc = await this.createLocalDashManifest(result.player_response.streamingData.adaptiveFormats) + if (this.proxyVideos) { + this.dashSrc = await this.createInvidiousDashManifest() + } else { + this.dashSrc = await this.createLocalDashManifest(result.player_response.streamingData.adaptiveFormats) + } this.audioSourceList = result.player_response.streamingData.adaptiveFormats.filter((format) => { return format.mimeType.includes('audio')