File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ class FlatpakMeta {
248
248
throw Exception (
249
249
'Metadata must include Github repository info if fetching releases from Github.' );
250
250
}
251
- return await _githubReleases! .getLatestReleaseAssets ();
251
+ return _githubReleases! .getLatestReleaseAssets ();
252
252
} else {
253
253
if (_localReleases == null ) {
254
254
throw Exception ('Metadata must include releases if not fetching releases from Github.' );
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ class NutritionPlansProvider with ChangeNotifier {
341
341
/// Loads the available ingredients from the local cache
342
342
Future <void > fetchIngredientsFromCache () async {
343
343
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' );
345
345
if (ingredientDb.isNotEmpty) {
346
346
ingredients = ingredientDb.map ((e) => Ingredient .fromJson (jsonDecode (e.data))).toList ();
347
347
}
You can’t perform that action at this time.
0 commit comments