Skip to content

Commit

Permalink
Fixed token identifier subject construction
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Jun 14, 2021
1 parent 8d1558e commit 724a4a2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -82,7 +82,7 @@ export function genLookupOrFail(
?.get(lookup.identifier);
if (tokenRow == null) throw new Error(`${nameof(genLookupOrFail)} no token info for ${JSON.stringify(lookup)}`);
// fixme: temporary solution
const id = lookup.identifier.split('.')[0];
const id = lookup.identifier.split('.').join('');
const metadataStr = localStorage.getItem(
`token-metadata-${lookup.networkId}-${id}`
);
Expand Down

0 comments on commit 724a4a2

Please sign in to comment.