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 0ae3663..ebc81e6 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" && $parts[0] !== "Windy" && (isset($parts[1]) && $parts[1] !== "Brightdawn")) { + if (strlen($parts[0]) > 3 && !str_ends_with($parts[0], "e") && $parts[0] !== "Filly" && $parts[0] !== "Windy" && (isset($parts[1]) && $parts[1] !== "Brightdawn" && $parts[1] !== "Fizz")) { if (str_contains($parts[0], "/")) { return explode("/", $parts[0])[0]; } else { |