1
0
Fork 0

Updaet HashtagUnfollowPipeline, fix typo

This commit is contained in:
Daniel Supernault 2023-11-15 22:37:21 -07:00
parent 19233cc976
commit 3e96fa8a56
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1
1 changed files with 2 additions and 2 deletions

View File

@ -68,9 +68,9 @@ class HashtagUnfollowPipeline implements ShouldQueue
continue;
}
$tags = collect($status['tags'])->filter(function($tag) {
$tags = collect($status['tags'])->map(function($tag) {
return $tag['name'];
})->toArray();
})->filter()->values()->toArray();
if(in_array($slug, $tags)) {
HomeTimelineService::rem($pid, $id);