diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/VideoUtils.java b/Core/src/org/sleuthkit/autopsy/coreutils/VideoUtils.java index 3aee9f4fc3..8fa59850f4 100644 --- a/Core/src/org/sleuthkit/autopsy/coreutils/VideoUtils.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/VideoUtils.java @@ -242,7 +242,7 @@ public class VideoUtils { public static boolean canCompressAndScale(AbstractFile file) { - if (PlatformUtil.getOSName().toLowerCase().startsWith("Windows")) { + if (PlatformUtil.getOSName().toLowerCase().startsWith("windows")) { return isVideoThumbnailSupported(file); } diff --git a/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashLookupSettingsPanel.java b/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashLookupSettingsPanel.java index c9b3dd772a..704aef8612 100644 --- a/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashLookupSettingsPanel.java +++ b/Core/src/org/sleuthkit/autopsy/modules/hashdatabase/HashLookupSettingsPanel.java @@ -982,7 +982,7 @@ public final class HashLookupSettingsPanel extends IngestModuleGlobalSettingsPan * @return true if running on windows, false otherwise */ private boolean isWindows() { - return PlatformUtil.getOSName().toLowerCase().startsWith("Windows"); + return PlatformUtil.getOSName().toLowerCase().startsWith("windows"); } @NbBundle.Messages({"HashLookupSettingsPanel.indexNsrl.text=This hash set appears to be the NSRL, it will be removed from the list.\n",