From 5596afa450ef2c4c98d033f5579955c8a4484157 Mon Sep 17 00:00:00 2001 From: floppydiskette Date: Mon, 9 Dec 2024 20:48:27 +0000 Subject: Handle no image being returned by tinyfox.dev --- app/View/Components/Wah.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/View') diff --git a/app/View/Components/Wah.php b/app/View/Components/Wah.php index 3b1d546..aeb5757 100644 --- a/app/View/Components/Wah.php +++ b/app/View/Components/Wah.php @@ -21,7 +21,9 @@ class Wah extends Component try { $response = Http::get('https://api.tinyfox.dev/img.json?animal=wah'); $data = $response->json(); - return "https://api.tinyfox.dev".$data["loc"]; + if ($data == null) return ""; + return "https://api.tinyfox.dev" . $data["loc"]; + } catch (Exception $ex) { return ""; } -- cgit v1.2.3-54-g00ecf