Skip to content

Commit 847981a

Browse files
committed
Update -internal.js
1 parent 8a4c04a commit 847981a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/es6-promise/-internal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function handleOwnThenable(promise, thenable) {
8787
function handleMaybeThenable(promise, maybeThenable, then) {
8888
if (maybeThenable.constructor === promise.constructor &&
8989
then === originalThen &&
90-
constructor.resolve === originalResolve) {
90+
maybeThenable.constructor.resolve === originalResolve) {
9191
handleOwnThenable(promise, maybeThenable);
9292
} else {
9393
if (then === GET_THEN_ERROR) {

0 commit comments

Comments
 (0)