From 8236e9d08a3664a43e3521a066c656dc94b6b8db Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Mon, 18 Sep 2023 17:41:06 +1200 Subject: [PATCH] BUG Treat commit with same message as distinct if they are on different seconds --- src/Model/Changelog/ChangelogItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Changelog/ChangelogItem.php b/src/Model/Changelog/ChangelogItem.php index 956aa08..de0891b 100644 --- a/src/Model/Changelog/ChangelogItem.php +++ b/src/Model/Changelog/ChangelogItem.php @@ -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(); } /**