From 9e8c97e8947043876231f11b5c20d8cab8fdc1b7 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 6 Apr 2023 13:44:01 +0000 Subject: [PATCH] autoconfig: fix indentation Indent these two lines, so it's visually clear that they are part of the condition. --- src/mobile-config-autoconfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mobile-config-autoconfig.js b/src/mobile-config-autoconfig.js index 157ef97..dbcf847 100644 --- a/src/mobile-config-autoconfig.js +++ b/src/mobile-config-autoconfig.js @@ -25,7 +25,7 @@ var defaultChrome = new FileUtils.File("/etc/mobile-config-firefox/userChrome.cs // Remove the existing userChrome.css if older than the installed one if (chromeFile.exists() && defaultChrome.exists() && - chromeFile.lastModifiedTime < defaultChrome.lastModifiedTime) { + chromeFile.lastModifiedTime < defaultChrome.lastModifiedTime) { chromeFile.remove(false); } @@ -42,7 +42,7 @@ var defaultContent = new FileUtils.File("/etc/mobile-config-firefox/userContent. // Remove the existing userContent.css if older than the installed one if (contentFile.exists() && defaultContent.exists() && - contentFile.lastModifiedTime < defaultContent.lastModifiedTime) { + contentFile.lastModifiedTime < defaultContent.lastModifiedTime) { contentFile.remove(false); }