diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-30 14:36:56 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-30 14:40:13 +0100 |
commit | 4718d91d1a641b255fec2dd8a9b36fd3d4e60ea6 (patch) | |
tree | cf6e3d140ef6aeae6ed0d3bc6613a97843a73b66 /app/History | |
parent | 4e31ecf2c139455e2d2459ff98f2d4589f7b9dd2 (diff) |
fix: fix re-opening commits
Diffstat (limited to 'app/History')
-rw-r--r-- | app/History/CommitInfo.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/History/CommitInfo.hs b/app/History/CommitInfo.hs index d64577d..56293b1 100644 --- a/app/History/CommitInfo.hs +++ b/app/History/CommitInfo.hs @@ -48,7 +48,8 @@ fromPartialCommitInfos (partialCommitInfo : partialCommitInfos) = if ((/=) `on` (.rawText)) old new then new.provenance.last else old.provenance.last - } + }, + closed = False } ) ( \old -> |