From a8afb45deb23ccd628f1410859808927570bfb0f Mon Sep 17 00:00:00 2001 From: techwritescode <10032418+techwritescode@users.noreply.github.com> Date: Thu, 31 Jul 2025 17:36:28 -0500 Subject: [PATCH] Windows support fixes pt. 2 --- lsp/src/asm_server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lsp/src/asm_server.rs b/lsp/src/asm_server.rs index 306aa3d..658c5ec 100644 --- a/lsp/src/asm_server.rs +++ b/lsp/src/asm_server.rs @@ -251,7 +251,7 @@ impl LanguageServer for Asm { async fn did_open(&self, params: DidOpenTextDocumentParams) { let mut state = self.state.lock().await; let id = state.get_or_insert_source( - convert_uri(params.text_document.uri).unwrap(), + params.text_document.uri, params.text_document.text, ); drop(state);