refactor: fetch 100 latest app updates from github releases

This commit is contained in:
zhom
2025-06-14 15:43:50 +04:00
parent 5cd1774ffc
commit baac3a533a
+1 -1
View File
@@ -152,7 +152,7 @@ impl AppAutoUpdater {
async fn fetch_app_releases(
&self,
) -> Result<Vec<AppRelease>, Box<dyn std::error::Error + Send + Sync>> {
let url = "https://api.github.com/repos/zhom/donutbrowser/releases";
let url = "https://api.github.com/repos/zhom/donutbrowser/releases?per_page=100";
let response = self
.client
.get(url)