Skip to content

Commit

Permalink
Merge pull request #1350 from synonymdev/url-check
Browse files Browse the repository at this point in the history
test(scan): fix scan url
  • Loading branch information
Jasonvdb authored Oct 19, 2023
2 parents 40637b1 + 1783139 commit 572a0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export const decodeQRData = async (
// Treasure hunt
if (__DEV__ || selectedNetwork === EAvailableNetworks.bitcoin) {
// Airdrop
if (data.includes('cutt.ly/VwQFzhJJ')) {
if (data.includes('cutt.ly/VwQFzhJJ') || data.includes('bitkit.to/drone')) {
const chestId = '2gZxrqhc';
return ok([{ qrDataType: EQRDataType.treasureHunt, chestId }]);
}
Expand Down

0 comments on commit 572a0fa

Please sign in to comment.