summaryrefslogtreecommitdiff
path: root/schist_desktop_gui/src
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-01-17 17:04:12 +0000
committerJoe Carstairs <me@joeac.net>2026-01-17 17:04:12 +0000
commit796be14444b7ed46f9555999041edd6ef3e85bde (patch)
tree9c71efbb4b09d5f164c312383080dad023ad8328 /schist_desktop_gui/src
parent11dbd9b38609fe85c2881bbe3588045f445645e5 (diff)
More typos and stuff
Diffstat (limited to 'schist_desktop_gui/src')
-rw-r--r--schist_desktop_gui/src/paths.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/schist_desktop_gui/src/paths.rs b/schist_desktop_gui/src/paths.rs
index f5cbf33..b098859 100644
--- a/schist_desktop_gui/src/paths.rs
+++ b/schist_desktop_gui/src/paths.rs
@@ -33,7 +33,7 @@ fn get_file_paths_checked() -> anyhow::Result<Vec<PathBuf>> {
fn is_sqlite_file(entry: &std::fs::DirEntry) -> bool {
entry
.file_type()
- .is_ok_and(|ft| (FileType::is_file(&ft) || FileType::is_symlink(&ft)))
+ .is_ok_and(|ft| FileType::is_file(&ft) || FileType::is_symlink(&ft))
&& entry
.path()
.extension()