Update PronounService, fix jsonn_decode null parameter

pull/3655/head
Daniel Supernault 3 years ago
parent 61d26e85cd
commit d72cd819d2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -15,7 +15,7 @@ class PronounService {
return Cache::remember($key, $ttl, function() use($id) {
$res = UserPronoun::whereProfileId($id)->first();
return $res ? json_decode($res->pronouns, true) : [];
return $res && $res->pronouns ? json_decode($res->pronouns, true) : [];
});
}

Loading…
Cancel
Save