Fix new linter errors

This commit is contained in:
Henry Mercer 2024-08-05 19:22:26 +01:00
parent acb243eabd
commit ecb9ccfcb1
33 changed files with 41 additions and 33 deletions

View file

@ -206,7 +206,7 @@ export function resolveUriToFile(
let uri: string;
try {
uri = decodeURIComponent(location.uri as string);
} catch (e: any) {
} catch {
logger.debug(`Ignoring location as URI "${location.uri}" is invalid`);
return undefined;
}