From 74d3957cf82df897eaac5c503d9a40f18bca44e2 Mon Sep 17 00:00:00 2001 From: philipp Date: Sat, 13 Apr 2024 09:44:22 +0200 Subject: [PATCH] dont show external boat --- src/tera/board/boathouse.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tera/board/boathouse.rs b/src/tera/board/boathouse.rs index e532f23..e0336fd 100644 --- a/src/tera/board/boathouse.rs +++ b/src/tera/board/boathouse.rs @@ -28,7 +28,9 @@ async fn index( let mut final_boats = Vec::new(); for boat in boats { if boat.boat.boathouse(db).await.is_none() { - final_boats.push(boat); + if boat.boat.name != "Externes Boot" { + final_boats.push(boat); + } } }