diff --git a/src/js/controllers/copayers.js b/src/js/controllers/copayers.js index 816a5caa0..e045453c8 100644 --- a/src/js/controllers/copayers.js +++ b/src/js/controllers/copayers.js @@ -95,8 +95,8 @@ angular.module('copayApp.controllers').controller('copayersController', if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } - var message = 'Join my Copay wallet. Here is the invitation code ' + secret + ' You can download Copay for your phone or desktop at https://copay.io'; - window.plugins.socialsharing.share(message, null, null, null); + var message = 'Join my Copay wallet. Here is the invitation code: ' + secret + ' You can download Copay for your phone or desktop at https://copay.io'; + window.plugins.socialsharing.share(message, 'Invitation to share a Copay Wallet', null, null); } }; diff --git a/src/js/controllers/receive.js b/src/js/controllers/receive.js index dd82b60f6..ec151ee77 100644 --- a/src/js/controllers/receive.js +++ b/src/js/controllers/receive.js @@ -55,7 +55,7 @@ angular.module('copayApp.controllers').controller('receiveController', if (isMobile.Android() || isMobile.Windows()) { window.ignoreMobilePause = true; } - window.plugins.socialsharing.share('bitcoin:' + addr, null, null, null); + window.plugins.socialsharing.share('bitcoin:' + addr, 'Here is my bitcoin address', null, null); } };