diff --git a/app/Services/AccountService.php b/app/Services/AccountService.php index 955e168b7..d65f95943 100644 --- a/app/Services/AccountService.php +++ b/app/Services/AccountService.php @@ -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(); }); diff --git a/app/Services/StatusService.php b/app/Services/StatusService.php index 10fa762ff..01d287e8d 100644 --- a/app/Services/StatusService.php +++ b/app/Services/StatusService.php @@ -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; }