Skip to content

Commit 555f57d

Browse files
Dieterberolandgeider
authored andcommitted
dart fix --apply
1 parent 9591d7c commit 555f57d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flatpak/scripts/flatpak_shared.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ class FlatpakMeta {
248248
throw Exception(
249249
'Metadata must include Github repository info if fetching releases from Github.');
250250
}
251-
return await _githubReleases!.getLatestReleaseAssets();
251+
return _githubReleases!.getLatestReleaseAssets();
252252
} else {
253253
if (_localReleases == null) {
254254
throw Exception('Metadata must include releases if not fetching releases from Github.');

lib/providers/nutrition.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ class NutritionPlansProvider with ChangeNotifier {
341341
/// Loads the available ingredients from the local cache
342342
Future<void> fetchIngredientsFromCache() async {
343343
final ingredientDb = await database.select(database.ingredients).get();
344-
log("Read ${ingredientDb.length} ingredients from db cache");
344+
log('Read ${ingredientDb.length} ingredients from db cache');
345345
if (ingredientDb.isNotEmpty) {
346346
ingredients = ingredientDb.map((e) => Ingredient.fromJson(jsonDecode(e.data))).toList();
347347
}

0 commit comments

Comments
 (0)