From 6bc20a37ed0215839e19e2eb56051d39dfe564b0 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 8 May 2023 22:45:57 -0600 Subject: [PATCH] Update ProfileService, add softFail param --- app/Services/ProfileService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/ProfileService.php b/app/Services/ProfileService.php index 43f2ff0e4..abc50d84a 100644 --- a/app/Services/ProfileService.php +++ b/app/Services/ProfileService.php @@ -4,9 +4,9 @@ namespace App\Services; class ProfileService { - public static function get($id) + public static function get($id, $softFail = false) { - return AccountService::get($id); + return AccountService::get($id, $softFail); } public static function del($id)