oa1 ticker needs to be lowercase
Konstantin Ullrich committed
Jun 25, 2024 at 18:52 UTC
8f91d4b8ff583dac01800142070fb1a346d5b79a
1 file changed
+1
-1
lib/entities/parse_address_from_domain.dart
+1
-1
@@ -201,7 +201,7 @@ class AddressResolver {
201
final txtRecord = await OpenaliasRecord.lookupOpenAliasRecord(formattedName);
202
if (txtRecord != null) {
203
final record = await OpenaliasRecord.fetchAddressAndName(
204
- formattedName: formattedName, ticker: ticker, txtRecord: txtRecord);
204
+ formattedName: formattedName, ticker: ticker.toLowerCase(), txtRecord: txtRecord);
205
return ParsedAddress.fetchOpenAliasAddress(record: record, name: text);
206
}
207
}