diff --git a/src/renderer/views/Trending/Trending.js b/src/renderer/views/Trending/Trending.js index 8f3ada13..9a84bbf6 100644 --- a/src/renderer/views/Trending/Trending.js +++ b/src/renderer/views/Trending/Trending.js @@ -68,7 +68,13 @@ export default Vue.extend({ this.isLoading = true console.log('getting local trending') - ytrend.scrape_trending_page(this.region).then((result) => { + const param = { + parseCreatorOnRise: false, + page: 'default', + geoLocation: this.region + } + + ytrend.scrape_trending_page(param).then((result) => { const returnData = result.filter((item) => { return item.type === 'video' || item.type === 'channel' || item.type === 'playlist' })