Disables BitPay Card from appConfig
This commit is contained in:
parent
02f84b8a60
commit
f13d9ca6a4
2 changed files with 7 additions and 1 deletions
|
|
@ -165,6 +165,10 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
|
||||
// BitPayCard Authentication
|
||||
} else if (data && data.indexOf(appConfigService.name + '://') === 0) {
|
||||
|
||||
// Disable BitPay Card
|
||||
if (!appConfigService._enabledExtensions.debitcard) return false;
|
||||
|
||||
var secret = getParameterByName('secret', data);
|
||||
var email = getParameterByName('email', data);
|
||||
var otp = getParameterByName('otp', data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue