From e6b4e7670dcc810dda600da9b9aa08eb275023af Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 1 Mar 2019 22:28:11 -0700 Subject: [PATCH] Update StatusEntityLexer --- app/Jobs/StatusPipeline/StatusEntityLexer.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Jobs/StatusPipeline/StatusEntityLexer.php b/app/Jobs/StatusPipeline/StatusEntityLexer.php index 5fe3cf34..dd1c352a 100644 --- a/app/Jobs/StatusPipeline/StatusEntityLexer.php +++ b/app/Jobs/StatusPipeline/StatusEntityLexer.php @@ -95,7 +95,11 @@ class StatusEntityLexer implements ShouldQueue ['name' => $tag, 'slug' => $slug] ); StatusHashtag::firstOrCreate( - ['status_id' => $status->id, 'hashtag_id' => $hashtag->id] + [ + 'status_id' => $status->id, + 'hashtag_id' => $hashtag->id, + 'profile_id' => $status->profile_id + ] ); }); }