From 347c56da55a43810cd3ea905689968f93aea5a20 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sat, 5 Aug 2023 14:29:42 -0400 Subject: [PATCH] Ran dart fix --- lib/providers/source_provider.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/providers/source_provider.dart b/lib/providers/source_provider.dart index ca2c969..da88640 100644 --- a/lib/providers/source_provider.dart +++ b/lib/providers/source_provider.dart @@ -431,14 +431,14 @@ abstract class AppSource { Map additionalSettings, SettingsProvider settingsProvider) async { Map results = {}; - sourceConfigSettingFormItems.forEach((e) { + for (var e in sourceConfigSettingFormItems) { var val = hostChanged ? additionalSettings[e.key] : settingsProvider.getSettingString(e.key); if (val != null) { results[e.key] = val; } - }); + } return results; }