fix: wrong topic field

This commit is contained in:
Roardom
2023-04-12 02:57:26 +00:00
parent b70bbf8fa4
commit 94efa52b02
+1 -1
View File
@@ -106,7 +106,7 @@ class PostController extends Controller
} else {
$this->chatRepository->systemMessage(sprintf('[url=%s]%s[/url] has left a reply on topic [url=%s]%s[/url]', $profileUrl, $user->username, $postUrl, $topic->name));
// Notify All Subscribers Of New Reply
if ($topic->first_user_poster_id != $user->id) {
if ($topic->first_post_user_id != $user->id) {
$topic->notifyStarter($user, $topic, $post);
}