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 33eea8e commit 949df69Copy full SHA for 949df69
lib/models/isar/exchange_cache/currency.dart
@@ -71,6 +71,11 @@ class Currency {
71
@ignore
72
String? _fuzzyCache;
73
String getFuzzyNet() {
74
+ // hack for legacy support
75
+ if (exchangeName == "Majestic Bank") {
76
+ return ticker.toLowerCase();
77
+ }
78
+
79
return _fuzzyCache ??= switch (Exchange.fromName(
80
exchangeName,
81
).runtimeType) {
0 commit comments