Skip to content

Commit

Permalink
Merge pull request #1507 from cake-tech/fix-open-alias
Browse files Browse the repository at this point in the history
oa1 ticker needs to be lowercase
  • Loading branch information
konstantinullrich authored Jun 25, 2024
2 parents 7dd1591 + 8f91d4b commit ac9e473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/entities/parse_address_from_domain.dart
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class AddressResolver {
final txtRecord = await OpenaliasRecord.lookupOpenAliasRecord(formattedName);
if (txtRecord != null) {
final record = await OpenaliasRecord.fetchAddressAndName(
formattedName: formattedName, ticker: ticker, txtRecord: txtRecord);
formattedName: formattedName, ticker: ticker.toLowerCase(), txtRecord: txtRecord);
return ParsedAddress.fetchOpenAliasAddress(record: record, name: text);
}
}
Expand Down

0 comments on commit ac9e473

Please sign in to comment.