Merge branch 'wallet/task/546' of https://github.com/Bitcoin-com/Wallet into wallet/task/546

This commit is contained in:
Jean-Baptiste Dominguez 2018-09-25 16:48:57 +02:00
commit fac91ff4f3
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ angular
// Detect some merchant that we know
if (payProData.memo.indexOf('eGifter') > -1) {
name = 'eGifter'
} else if (paymentUrl.indexOf('https://bitpay.com') > -1) {
} else if (payProData.url.indexOf('https://bitpay.com') > -1) {
name = 'BitPay';
}

View file

@ -24,7 +24,7 @@ var ShapeShift = (function() {
var parsedResponse = JP(xmlhttp.responseText);
cb.apply(null, [parsedResponse]);
} else {
cb.apply(null, [new Error('Request Failed')])
cb.apply(null, [new Error('Request Failed')]);
}
}
};