GitHub Themes/Plugins list limit 30 -> 100

This commit is contained in:
DecibillyJoel 2022-06-11 14:08:14 -04:00 committed by GitHub
parent 71a6f10e2f
commit ddc434cc36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,7 +176,7 @@
redirect: 'follow' redirect: 'follow'
}; };
fetch("https://api.github.com/search/repositories?q=topic:cidermusicplugin fork:true", requestOptions) fetch("https://api.github.com/search/repositories?q=topic:cidermusicplugin fork:true&per_page=100", requestOptions)
.then(response => response.text()) .then(response => response.text())
.then(result => { .then(result => {
self.repos = JSON.parse(result).items self.repos = JSON.parse(result).items
@ -185,4 +185,4 @@
} }
} }
}) })
</script> </script>