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 d36df0e commit a3749a6Copy full SHA for a3749a6
src/github.rs
@@ -282,6 +282,8 @@ impl Client {
282
viewer_did_author: bool,
283
}
284
285
+ debug!("started hiding comments in {}#{}", repo, pull_request_id);
286
+
287
let (owner, repo) = if let Some(mid) = repo.find('/') {
288
let split = repo.split_at(mid);
289
(split.0, split.1.trim_start_matches('/'))
@@ -327,6 +329,8 @@ impl Client {
327
329
328
330
}";
331
332
+ trace!("hiding comment {}", node_id);
333
334
self.graphql::<MinimizeData, _>(
335
MINIMIZE,
336
serde_json::json!({
0 commit comments