Lint fix

ae050be2d14d3d8a06f611e3350350990e134c7b

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -2Showing whitespace changes
public/scripts/extensions.js+2 -2
@@ -1230,7 +1230,7 @@ async function checkForExtensionUpdates(force) {
12301230 for (const [id, manifest] of Object.entries(manifests)) {
12311231 const isDisabled = extension_settings.disabledExtensions.includes(id);
12321232 if (isDisabled) {
12331233 console.debug(`Skipping extension: ${manifest.display_name} (${id}) for non-admin user`);
12341234 continue;
12351235 }
12361236 const isGlobal = getExtensionType(id) === 'global';
@@ -1277,7 +1277,7 @@ async function autoUpdateExtensions(forceAll) {
12771277 for (const [id, manifest] of Object.entries(manifests)) {
12781278 const isDisabled = extension_settings.disabledExtensions.includes(id);
12791279 if (!forceAll && isDisabled) {
12801280 console.debug(`Skipping extension: ${manifest.display_name} (${id}) for non-admin user`);
12811281 continue;
12821282 }
12831283 const isGlobal = getExtensionType(id) === 'global';