Merge pull request #2374 from cvium/fix_playaccess_validation

reject play access validation promise
This commit is contained in:
dkanada 2021-02-07 10:14:55 +09:00 committed by GitHub
commit f6d0380486
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ class PlayAccessValidation {
return Promise.reject();
}
return showErrorMessage();
return showErrorMessage().finally(Promise.reject);
});
}
}