Fix incomingData
This commit is contained in:
parent
378a780df2
commit
e85175ed6c
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
|
|||
var message = parsed.message;
|
||||
|
||||
var amount = parsed.amount ? parsed.amount : '';
|
||||
var coin = parsed.extras && parsed.extras.coin ? (parsed.extras.coin).toUpperCase() : '';
|
||||
var coin = parsed.extras && parsed.extras.coin ? parsed.extras.coin : '';
|
||||
|
||||
if (parsed.r) {
|
||||
payproService.getPayProDetails(parsed.r, function(err, details) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue