Skip to content

Commit 5222cda

Browse files
committed
fix lists output
1 parent 3c5dfa2 commit 5222cda

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/output.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,8 @@ pub(crate) async fn save_proxies(
153153
} else {
154154
proxies.sort_by_key(|p| sort_naturally(p));
155155
}
156-
let text = create_proxy_list_str(
157-
&sorted_proxies,
158-
anonymous_only,
159-
false,
160-
);
156+
let text =
157+
create_proxy_list_str(proxies, anonymous_only, false);
161158
tokio::fs::write(
162159
folder_path.join(format!("{proto}.txt")),
163160
text,

0 commit comments

Comments
 (0)