Skip to content

Commit

Permalink
fix baserproject#2400 RSSフィードにてブログ記事のカテゴリ名が正しく生成されない問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kaburk committed Jun 16, 2023
1 parent 52500bc commit db97ace
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'title' => $entity->title,
'link' => $url,
'guid' => $url,
'category' => $entity->category->title?? null,
'category' => $entity->blog_category->title ?? null,
'description' => $blogHelper->removeCtrlChars($entity->content . $entity->detail),
'pubDate' => $entity->posted,
'enclosure' => $eyeCatch,
Expand Down

0 comments on commit db97ace

Please sign in to comment.