Merge pull request #2909 from pixelfed/staging

Update AccountService, fix status bug
pull/2914/head
daniel 4 years ago committed by GitHub
commit 687030090f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,7 +25,7 @@ class AccountService
return Cache::remember($key, $ttl, function() use($id) {
$fractal = new Fractal\Manager();
$fractal->setSerializer(new ArraySerializer());
$profile = Profile::whereNull('status')->findOrFail($id);
$profile = Profile::findOrFail($id);
$resource = new Fractal\Resource\Item($profile, new AccountTransformer());
return $fractal->createData($resource)->toArray();
});

@ -18,7 +18,7 @@ class StatusService {
public static function key($id, $publicOnly = true)
{
$p = $publicOnly ? '' : 'all:';
$p = $publicOnly ? 'pub:' : 'all:';
return self::CACHE_KEY . $p . $id;
}

Loading…
Cancel
Save