Browse Source

Merge pull request #4696 from pixelfed/staging

Update IncrementPostCount pipeline
daniel 1 year ago
parent
commit
c906dbb26b
1 changed files with 4 additions and 11 deletions
  1. 4 11
      app/Jobs/ProfilePipeline/IncrementPostCount.php

+ 4 - 11
app/Jobs/ProfilePipeline/IncrementPostCount.php

@@ -43,17 +43,10 @@ class IncrementPostCount implements ShouldQueue
 			return 1;
 			return 1;
 		}
 		}
 
 
-		if($profile->updated_at && $profile->updated_at->lt(now()->subDays(30))) {
-			$profile->status_count = Status::whereProfileId($id)->whereNull(['in_reply_to_id', 'reblog_of_id'])->count();
-			$profile->last_status_at = now();
-			$profile->save();
-			AccountService::del($id);
-		} else {
-			$profile->status_count = $profile->status_count + 1;
-			$profile->last_status_at = now();
-			$profile->save();
-			AccountService::del($id);
-		}
+		$profile->status_count = $profile->status_count + 1;
+		$profile->last_status_at = now();
+		$profile->save();
+		AccountService::del($id);
 
 
 		return 1;
 		return 1;
 	}
 	}