diff options
Diffstat (limited to 'app/planner/index.php')
-rw-r--r-- | app/planner/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/planner/index.php b/app/planner/index.php index b2070da..775fec3 100644 --- a/app/planner/index.php +++ b/app/planner/index.php @@ -39,7 +39,7 @@ function getMiniName(string $name) { $parts = explode(" ", $name); - if (strlen($parts[0]) > 3 && !str_ends_with($parts[0], "e") && $parts[0] !== "Filly") { + if (strlen($parts[0]) > 3 && !str_ends_with($parts[0], "e") && $parts[0] !== "Filly" && $parts[0] !== "Windy") { if (str_contains($parts[0], "/")) { return explode("/", $parts[0])[0]; } else { |