aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/nixpkgs/pkgs/comments/src/main.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/nixpkgs/pkgs/comments/src/main.rs b/sys/nixpkgs/pkgs/comments/src/main.rs
index de98d75e..05f0e8cd 100644
--- a/sys/nixpkgs/pkgs/comments/src/main.rs
+++ b/sys/nixpkgs/pkgs/comments/src/main.rs
@@ -227,7 +227,7 @@ fn main() -> anyhow::Result<()> {
if let Some(parent) = output_replies
.iter_mut()
- .rev()
+ // .rev()
.flat_map(|com| &mut com.replies)
.flat_map(|com| &mut com.replies)
.flat_map(|com| &mut com.replies)
@@ -240,7 +240,7 @@ fn main() -> anyhow::Result<()> {
}))
} else if let Some(parent) = output_replies
.iter_mut()
- .rev()
+ // .rev()
.flat_map(|com| &mut com.replies)
.flat_map(|com| &mut com.replies)
.filter(|com| com.value.author == replyee)
@@ -252,7 +252,7 @@ fn main() -> anyhow::Result<()> {
}))
} else if let Some(parent) = output_replies
.iter_mut()
- .rev()
+ // .rev()
.flat_map(|com| &mut com.replies)
.filter(|com| com.value.author == replyee)
.last()
@@ -262,7 +262,7 @@ fn main() -> anyhow::Result<()> {
..reply.value
}))
} else if let Some(parent) = output_replies.iter_mut()
- .rev()
+ // .rev()
.filter(|com| com.value.author == replyee)
.last()
{