1
0
Fork 0

Merge pull request #4669 from pixelfed/staging

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

View File

@ -82,13 +82,14 @@ class StatusTagsPipeline implements ShouldQueue
->first(); ->first();
if(!$hashtag) { if(!$hashtag) {
$hashtag = new Hashtag; $hashtag = Hashtag::updateOrCreate([
$hashtag->name = $name; 'slug' => str_slug($name, '-', false),
$hashtag->slug = str_slug($name, '-', false); ],[
$hashtag->save(); 'name' => $name
]);
} }
} else { } else {
$hashtag = Hashtag::firstOrCreate([ $hashtag = Hashtag::updateOrCreate([
'slug' => str_slug($name, '-', false), 'slug' => str_slug($name, '-', false),
],[ ],[
'name' => $name 'name' => $name