Skip to content

Commit

Permalink
Add PR ID to Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-farre committed Aug 16, 2024
1 parent 89277ef commit ab0ddce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Changelog
- Enh #411: Standardization of Modal Button Positions
- Enh #363: Deny access for files from message where current user is not participant
- Fix #412: Fix active message after mark unread
- Fix: When replying to a message, the conversation is marked as unread
- Fix #15: When replying to a message, the conversation is marked as unread

3.2.2 (July 9, 2024)
--------------------
Expand Down
4 changes: 3 additions & 1 deletion models/forms/ReplyForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ public function save()
$userMessage = $this->model->getUserMessage($this->reply->user_id);
if ($userMessage) {
$userMessage->last_viewed = date('Y-m-d G:i:s');
return $userMessage->save();
$userMessage->save();
}

return true;
}

return false;
Expand Down

0 comments on commit ab0ddce

Please sign in to comment.