Skip to content

Commit

Permalink
Execute success when the SMS composer is shown
Browse files Browse the repository at this point in the history
This isn't the best scenario since you don't know when the message is actually sent but I think this puts the API into closer parity with the other platforms.
  • Loading branch information
jlkalberer authored Aug 28, 2016
1 parent d3df32b commit 41cb027
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 41cb027

Please sign in to comment.