mirror of
https://codeberg.org/icewind/logsmash.git
synced 2026-06-04 02:24:11 +02:00
fix missing spreed routes
This commit is contained in:
parent
7c997464a3
commit
4600c8fb3c
2 changed files with 7 additions and 5 deletions
|
|
@ -32,7 +32,8 @@ fn extract_routes<W: Write>(out: &mut W, path: &str) {
|
|||
let app = match get_appinfo(path.as_ref()) {
|
||||
Ok(info) => info.id().clone(),
|
||||
Err(nextcloud_appinfo::error::Error::InfoXmlMissing) => "core".into(),
|
||||
Err(_) => {
|
||||
Err(e) => {
|
||||
eprintln!("Error getting routes for {path}: {e:#}");
|
||||
return;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue