SHA-256 hex of a server token (what the DB stores; never the token itself).
(token: &str)
| 395 | .split(|ch: char| ch == ',' || ch == ';' || ch == '|' || ch.is_whitespace()) |
| 396 | .map(str::trim) |
| 397 | .filter(|mod_id| !mod_id.is_empty()) |
| 398 | { |
| 399 | if !mod_ids.iter().any(|existing| existing == mod_id) { |
| 400 | mod_ids.push(mod_id.to_string()); |
| 401 | } |
| 402 | } |