From 9a7c325a8c7284aaf41c8ff795c39b4303a525ef Mon Sep 17 00:00:00 2001 From: Misode Date: Mon, 20 Oct 2025 02:03:30 +0200 Subject: [PATCH] Fix Spyglass breaking change --- src/app/services/Spyglass.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/Spyglass.ts b/src/app/services/Spyglass.ts index 5909d8f4..e7d76d6b 100644 --- a/src/app/services/Spyglass.ts +++ b/src/app/services/Spyglass.ts @@ -377,7 +377,7 @@ const initialize: core.ProjectInitializer = async (ctx) => { const uri: string = new core.Uri('downloads/misode-mcdoc.tar.gz', cacheRoot).toString() const buffer = await compressBall([['builtin.mcdoc', builtinMcdoc]]) await core.fileUtil.writeFile(externals, uri, buffer) - return { uri } + return { type: 'tarball-file', uri } }) meta.registerUriBinder(je.binder.uriBinder)