Fix comment association

This commit is contained in:
Olivier 'reivilibre' 2022-03-28 22:26:20 +01:00
parent 3bfd192c28
commit 507459b4ee
1 changed files with 5 additions and 6 deletions

View File

@ -10,12 +10,11 @@ use tokio::io;
use tokio::io::{AsyncBufReadExt, BufReader};
pub const SORTING_OUTCOMES: [&str; 5] = [
// Included
"y", // Not included (generic)
"n", // Duplicates an existing entry
"dupe", // Spam entry
"spam", // Invalid format for some reason (e.g. pattern or URL invalid)
"inv",
"y", // Included
"n", // Not included (generic)
"dupe", // Duplicates an existing entry
"spam", // Spam entry
"inv", // Invalid format for some reason (e.g. pattern or URL invalid)
];
#[tokio::main]