You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
```
warning: match can be simplified with `.unwrap_or_default()`
--> src/server.rs:486:13
|
486 | / match client_hello.server_name() {
487 | | Some(c) => c,
488 | | None => "",
489 | | }
| |_____________^ help: replace it with: `client_hello.server_name().unwrap_or_default()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or_default
= note: `#[warn(clippy::manual_unwrap_or_default)]` on by default
```
0 commit comments