Explorar o código

Updaet HashtagUnfollowPipeline, fix typo

Daniel Supernault hai 1 ano
pai
achega
3e96fa8a56
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      app/Jobs/HomeFeedPipeline/HashtagUnfollowPipeline.php

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