mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-26 01:10:39 +00:00
typo
This commit is contained in:
parent
d7162c7529
commit
2f243db5bb
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class RemoteConfigService {
|
||||||
for (final value in FirebaseRemoteConfig.instance.getAll().entries) {
|
for (final value in FirebaseRemoteConfig.instance.getAll().entries) {
|
||||||
try {
|
try {
|
||||||
final feature = Feature.values.firstWhere((f) => f.name == value.key);
|
final feature = Feature.values.firstWhere((f) => f.name == value.key);
|
||||||
result[feature] = MapEntry(feature, value.value.toValue(feature));
|
result[feature] = value.value.toValue(feature);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
log(e.toString());
|
log(e.toString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue