From c24efb8bbeba416431c4d13f953987bf1da22641 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 20 Dec 2018 20:43:43 -0800 Subject: [PATCH] Fixing commas --- new_torrents_fetcher/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/new_torrents_fetcher/src/main.rs b/new_torrents_fetcher/src/main.rs index 14bacb0..98f158e 100644 --- a/new_torrents_fetcher/src/main.rs +++ b/new_torrents_fetcher/src/main.rs @@ -168,7 +168,8 @@ fn leetx() { .children() .nth(0) .unwrap() - .text(); + .text() + .replace(",", "");; let size_bytes = convert_to_bytes(size); let created_unix = SystemTime::now()