Ver código fonte

Updaet HashtagUnfollowPipeline, fix typo

Daniel Supernault 1 ano atrás
pai
commit
3e96fa8a56

+ 2 - 2
app/Jobs/HomeFeedPipeline/HashtagUnfollowPipeline.php

@@ -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);