We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2813cd commit 5701e68Copy full SHA for 5701e68
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM rust:1.81 AS builder
+FROM rust:1.85 AS builder
2
COPY ./fplus-lib /fplus-lib
3
COPY ./fplus-http-server/Cargo.toml /fplus-http-server/Cargo.toml
4
COPY ./Cargo.lock /fplus-http-server/Cargo.lock
fplus-lib/src/core/mod.rs
@@ -605,7 +605,7 @@ impl LDNApplication {
605
path,
606
};
607
608
- if filter.as_ref().map_or(true, |f| &app_file.id == f) {
+ if filter.as_ref().is_none_or(|f| &app_file.id == f) {
609
apps.push(app_with_date);
610
}
611
0 commit comments