1
0
Fork 0

Merge pull request #4670 from pixelfed/staging

Update StatusTagsPipeline, fix object tags slug query
This commit is contained in:
daniel 2023-09-25 05:20:38 -06:00 committed by GitHub
commit d5baf2627a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -84,14 +84,12 @@ class StatusTagsPipeline implements ShouldQueue
if(!$hashtag) {
$hashtag = Hashtag::updateOrCreate([
'slug' => str_slug($name, '-', false),
],[
'name' => $name
]);
}
} else {
$hashtag = Hashtag::updateOrCreate([
'slug' => str_slug($name, '-', false),
],[
'name' => $name
]);
}