Skip to content

Commit 44c3fc0

Browse files
committed
fix: use method string for variables request to fix NoInfer compat
1 parent ea4c758 commit 44c3fc0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/extension/server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ connection.onRequest(protocol.documentation, async () => {
210210
};
211211
});
212212

213-
connection.onRequest(protocol.variables, async (param) => {
213+
connection.onRequest(protocol.variables.method, async (param) => {
214214
let context: SepticContext | undefined = await scgContextManager.getContext(
215215
param.uri,
216216
);

0 commit comments

Comments
 (0)