Skip to content

Commit

Permalink
Merge pull request #14 from ghrlt/patch-1
Browse files Browse the repository at this point in the history
Fix wrong argument compiler error
  • Loading branch information
UwUDev authored Aug 20, 2024
2 parents 8e231db + e681476 commit 4ca4086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/installer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Installer {
eventLog.add('Downloading balalib release $version...');

// TODO: add a combo box to select the version of balalib to download
final balalibUri = await getBalalibReleaseUri('latest');
final balalibUri = await getBalalibReleaseUri(version: 'latest');
final balalibResponse = await http.get(balalibUri);
eventLog.add(
'Downloaded balalib release $version size: ${balalibResponse.bodyBytes.length} bytes');
Expand Down

0 comments on commit 4ca4086

Please sign in to comment.