🐛 Fix incorrect command id

This commit is contained in:
Robin van der Linde 2025-02-21 01:21:56 +01:00
parent 3519438094
commit 3d54501219
Signed by: Robin-van-der-Linde
GPG key ID: 53956B3252478F0D

View file

@ -29,7 +29,7 @@ export async function activate(context: vscode.ExtensionContext) {
});
// Listen for refreshCache command
vscode.commands.registerCommand("mapcomplete.refreshCache", async () => {
vscode.commands.registerCommand("mapcomplete.refresh", async () => {
if (cacheWorker) {
await cacheWorker.refreshCache();
}