diff --git a/app/Services/AccountService.php b/app/Services/AccountService.php
index 955e168b7e91eb6974bedb2f05b0365cc1b5241e..d65f95943702c4134096f27cdf73a668fbff07c8 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 10fa762ff0e8e3c3c29345d39c5978e5eadcd87f..01d287e8d398cb4d69187e58ffc9f25cc75cabc4 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;
 	}