First pass on fixes

This commit is contained in:
Piotr Osiewicz 2025-08-19 14:23:59 +02:00
parent 5826d89b97
commit 2f3be75fc7
269 changed files with 1593 additions and 2574 deletions

View file

@ -163,14 +163,12 @@ impl ScopeSelectorDelegate {
for entry in read_dir {
if let Some(entry) = entry.log_err() {
let path = entry.path();
if let (Some(stem), Some(extension)) = (path.file_stem(), path.extension()) {
if extension.to_os_string().to_str() == Some("json") {
if let Ok(file_name) = stem.to_os_string().into_string() {
if let (Some(stem), Some(extension)) = (path.file_stem(), path.extension())
&& extension.to_os_string().to_str() == Some("json")
&& let Ok(file_name) = stem.to_os_string().into_string() {
existing_scopes
.insert(ScopeName::from(ScopeFileName(Cow::Owned(file_name))));
}
}
}
}
}
}