File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
16
### Fixed
17
17
- push branch to its tracking remote ([ #597 ] ( https://github.com/extrawurst/gitui/issues/597 ) )
18
18
- fixed panic when staging lines involving missing newline eof ([ #605 ] ( https://github.com/extrawurst/gitui/issues/605 ) )
19
+ - fixed pull/fetch deadlocking when it fails ([ #624 ] ( https://github.com/extrawurst/gitui/issues/624 ) )
19
20
20
21
## [ 0.13.0] - 2020-03-15 - Happy Birthday GitUI 🥳
21
22
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ impl PullComponent {
99
99
branch : self . branch . clone ( ) ,
100
100
basic_credential : cred,
101
101
} ) ?;
102
+
102
103
Ok ( ( ) )
103
104
}
104
105
@@ -133,6 +134,8 @@ impl PullComponent {
133
134
if err. is_empty ( ) {
134
135
self . try_ff_merge ( ) ?;
135
136
} else {
137
+ self . pending = false ;
138
+ self . hide ( ) ;
136
139
self . queue . borrow_mut ( ) . push_back (
137
140
InternalEvent :: ShowErrorMsg ( format ! (
138
141
"fetch failed:\n {}" ,
You can’t perform that action at this time.
0 commit comments