Skip to content

Commit

Permalink
Merge pull request #99 from jlkalberer/patch-1
Browse files Browse the repository at this point in the history
Execute success when the SMS composer is shown
  • Loading branch information
dbaq authored Aug 30, 2016
2 parents d3df32b + 41cb027 commit 872837d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/SmsProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
var chatMessage = new Windows.ApplicationModel.Chat.ChatMessage();
chatMessage.body = args[1];
chatMessage.recipients.push(args[0]);
Windows.ApplicationModel.Chat.ChatMessageManager.showComposeSmsMessageAsync(chatMessage);
Windows.ApplicationModel.Chat.ChatMessageManager.showComposeSmsMessageAsync(chatMessage).done(win, fail);

}
};
Expand Down

0 comments on commit 872837d

Please sign in to comment.