Skip to content

Commit

Permalink
fix importing some newpipe subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunkyProgrammer committed Jul 27, 2023
1 parent 1d3d9df commit 146c75e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/data-settings/data-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ export default defineComponent({
}

const newPipeSubscriptions = newPipeData.subscriptions.filter((channel, index) => {
return channel.service_id === 0
return channel.service_id === 0 || channel.url.indexOf('youtube.com') !== -1
})

const subscriptions = []
Expand Down

0 comments on commit 146c75e

Please sign in to comment.