Merge pull request #1159 from DecibillyJoel/main

GitHub Themes/Plugins list limit 30 -> 100
This commit is contained in:
Amaru8 2022-06-11 23:12:02 +02:00 committed by GitHub
commit 50b953d0b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

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>

View file

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