We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2299b45 commit 086eb30Copy full SHA for 086eb30
lib/services/price.dart
@@ -159,7 +159,9 @@ class PriceAPI {
159
160
for (final map in coinGeckoData) {
161
final String coinName = map["name"] as String;
162
- final coin = AppConfig.getCryptoCurrencyByPrettyName(coinName);
+ final coin = AppConfig.getCryptoCurrencyByPrettyName(
163
+ coinName == "Factor" ? "Fact0rn" : coinName,
164
+ );
165
166
try {
167
final price = Decimal.parse(map["current_price"].toString());
0 commit comments