autoconfig: fix indentation

Indent these two lines, so it's visually clear that they are part of the
condition.
This commit is contained in:
Oliver Smith 2023-04-06 13:44:01 +00:00
parent 8e59b386e3
commit 9e8c97e894
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -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);
}