Merge pull request #316 from Bitcoin-com/wallet/task/500

Changed testnet to isTestnet.
This commit is contained in:
Jean-Baptiste Dominguez 2018-08-31 16:45:40 +09:00 committed by GitHub
commit 2b8c2d1c61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 40 additions and 40 deletions

View file

@ -116,7 +116,7 @@ angular.module('copayApp.controllers').controller('tabScanController', function(
var title = '';
var msg = '';
if (parsed.isValid) {
if (parsed.testnet) {
if (parsed.isTestnet) {
title = gettextCatalog.getString('Unsupported');
msg = gettextCatalog.getString('Testnet is not supported.');
popupService.showAlert(title, msg, function onAlertShown() {