Fix lowercase whitelisted_keys not being recognized as entries
This commit is contained in:
@@ -151,8 +151,11 @@ namespace ColumnLynx::Utils {
|
||||
}
|
||||
|
||||
std::string line;
|
||||
|
||||
while (std::getline(file, line)) {
|
||||
// Convert to upper case to align with the bytesToHexString() output
|
||||
for (int i = 0; i < line.length(); i++) {
|
||||
line[i] = toupper(line[i]);
|
||||
}
|
||||
out.push_back(line);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user