Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-04 02:18:00 +01:00
Resolve uninlined_format_args clippy warnings
The upcomming release of Rust 1.67.0 will warn on `uninlined_format_args`. This PR resolves that by inlining all these items. It also looks nicer.
Dieser Commit ist enthalten in:
Ursprung
00855ee31d
Commit
912ad64555
1 geänderte Dateien mit 0 neuen und 6 gelöschten Zeilen
|
@ -690,12 +690,6 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(log_file) = &cfg.log_file {
|
|
||||||
if std::fs::OpenOptions::new().append(true).create(true).open(log_file).is_err() {
|
|
||||||
err!("Unable to write to log file", log_file);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let dom = cfg.domain.to_lowercase();
|
let dom = cfg.domain.to_lowercase();
|
||||||
if !dom.starts_with("http://") && !dom.starts_with("https://") {
|
if !dom.starts_with("http://") && !dom.starts_with("https://") {
|
||||||
err!(
|
err!(
|
||||||
|
|
Laden …
In neuem Issue referenzieren