fix: Get changelogs for alternative sources (#1766)

This commit is contained in:
aAbed 2024-09-20 04:42:07 +05:45 committed by GitHub
parent d53f8cf130
commit c7298424e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 15 additions and 6 deletions

View file

@ -484,7 +484,7 @@ class HomeViewModel extends BaseViewModel {
Future<String?> getLatestPatchesChangelog() async {
final release =
await _githubAPI.getLatestRelease(_managerAPI.defaultPatchesRepo);
await _githubAPI.getLatestRelease(_managerAPI.getPatchesRepo());
return release?['body'];
}