fix(bls): parsing of entries should split by whitespace, not just spaces

This commit is contained in:
2025-10-24 18:51:34 -07:00
parent 9d2c31f77f
commit 4c7b1d70ef

View File

@@ -36,8 +36,8 @@ impl FromStr for BlsEntry {
// Trim the line. // Trim the line.
let line = line.trim(); let line = line.trim();
// Split the line once by a space. // Split the line once by whitespace.
let Some((key, value)) = line.split_once(" ") else { let Some((key, value)) = line.split_once(char::is_whitespace) else {
continue; continue;
}; };