forked from mirror/pixelfed
Update StatusEntityLexer
This commit is contained in:
parent
d39947ed08
commit
e6b4e7670d
|
@ -95,7 +95,11 @@ class StatusEntityLexer implements ShouldQueue
|
||||||
['name' => $tag, 'slug' => $slug]
|
['name' => $tag, 'slug' => $slug]
|
||||||
);
|
);
|
||||||
StatusHashtag::firstOrCreate(
|
StatusHashtag::firstOrCreate(
|
||||||
['status_id' => $status->id, 'hashtag_id' => $hashtag->id]
|
[
|
||||||
|
'status_id' => $status->id,
|
||||||
|
'hashtag_id' => $hashtag->id,
|
||||||
|
'profile_id' => $status->profile_id
|
||||||
|
]
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue