mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update ProfileService, add softFail param
This commit is contained in:
parent
f48daab37e
commit
6bc20a37ed
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue