Skip to content

Commit

Permalink
Do not return asyncReject
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Brain committed Dec 6, 2016
1 parent ba48425 commit 1f1ab32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bridge/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export function rejectRemoteSendMessage(win, err) {
throw new Error(`Window not found on which to reject sendMessage`);
}

return remoteWindow.sendMessagePromise.asyncReject(err);
remoteWindow.sendMessagePromise.asyncReject(err);
}

export function sendBridgeMessage(win, message, domain) {
Expand Down

0 comments on commit 1f1ab32

Please # to comment.