Fix reading EOL data correctly

This commit is contained in:
Ilia Ross
2025-05-28 20:21:08 +03:00
parent 16e1135bd1
commit b1904a6271

View File

@ -84,7 +84,7 @@ if (!-r $eol_file) {
}
my $eol_data = &read_file_contents($eol_file);
my $eol_json;
eval { $eol_json = &convert_from_json($eol_data); };
eval { $eol_json = &convert_from_json($eol_data, 1); };
if ($@) {
&error_stderr("Could not parse OS EOL data: $@");
return undef;