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); + } } }