File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## Unreleased
9
9
10
+ ### Fixes
11
+ * fix commit log not updating after branch switch ([ #1862 ] ( https://github.com/extrawurst/gitui/issues/1862 ) )
12
+
10
13
## [ 0.24.1] - 2023-08-30
11
14
12
15
### Fixes
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ impl CommitList {
95
95
///
96
96
pub fn clear ( & mut self ) {
97
97
self . items . clear ( ) ;
98
+ self . commits . clear ( ) ;
98
99
}
99
100
100
101
///
@@ -740,8 +741,6 @@ impl CommitList {
740
741
let slice_end =
741
742
want_min. saturating_add ( SLICE_SIZE ) . min ( commits) ;
742
743
743
- log:: info!( "fetch_commits: {want_min}-{slice_end}" , ) ;
744
-
745
744
let commits = sync:: get_commits_info (
746
745
& self . repo . borrow ( ) ,
747
746
& self . commits [ want_min..slice_end] ,
You can’t perform that action at this time.
0 commit comments