We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8452a0 commit 42d4590Copy full SHA for 42d4590
gix-filter/src/driver/process/client.rs
@@ -185,8 +185,8 @@ impl Client {
185
self.send_command_and_meta(command, meta)?;
186
while let Some(data) = self.out.read_line() {
187
let line = data??;
188
- if let Some(line) = line.as_bstr() {
189
- inspect_line(line);
+ if let Some(line) = line.as_text() {
+ inspect_line(line.as_bstr());
190
}
191
192
self.out.reset_with(&[gix_packetline::PacketLineRef::Flush]);
0 commit comments