Skip to content

Commit

Permalink
fix: typo to fix hover (#1426)
Browse files Browse the repository at this point in the history
fixes #1307
  • Loading branch information
Divyendu Singh authored Mar 14, 2020
1 parent 2a77e47 commit 1fdcb28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ export class MessageProcessor {
}

async handleHoverRequest(params: TextDocumentPositionParams): Promise<Hover> {
if (!this._isInitialized || this._graphQLCache) {
if (!this._isInitialized || !this._graphQLCache) {
return { contents: [] };
}

Expand Down

0 comments on commit 1fdcb28

Please sign in to comment.