*Ensure options.options exists

This commit is contained in:
Derrick Hammer 2022-08-19 12:15:31 -04:00
parent f1585ed6b3
commit 672916880d
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ export default class Handshake extends AbstractResolverModule {
return resolverEmptyResponse();
}
if ("subquery" in options?.options) {
if (options?.options && "subquery" in options.options) {
return resolverEmptyResponse();
}