Skip to content

Commit

Permalink
BUG Treat commit with same message as distinct if they are on differe…
Browse files Browse the repository at this point in the history
…nt seconds
  • Loading branch information
Maxime Rainville committed Sep 18, 2023
1 parent cc33e6d commit 8236e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/Changelog/ChangelogItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public function getRenderData()
public function getDistinctDetails()
{
// Date, author, and message
return $this->getAuthor() . '-' . $this->getDate()->format('Y-m-d') . '-' . $this->getRawMessage();
return $this->getAuthor() . '-' . $this->getDate()->format('Y-m-d H:i:s') . '-' . $this->getRawMessage();
}

/**
Expand Down

0 comments on commit 8236e9d

Please sign in to comment.