fix comment

This commit is contained in:
Meliox 2025-09-14 12:42:10 +02:00
parent eb834575f2
commit 470af54f3b

View File

@ -506,7 +506,7 @@ collect_sensors_output() {
# Replace NaN values with null for valid JSON\ # Replace NaN values with null for valid JSON\
$res->{sensorsOutput} =~ s/\\bNaN\\b/null/g;\ $res->{sensorsOutput} =~ s/\\bNaN\\b/null/g;\
\ \
# Fix duplicate SODIMM keys by appending fan number with a space - handle both pretty and one-line JSON\ # Fix duplicate SODIMM keys by appending temperature sensor number with a space - handle both pretty and one-line JSON\
# Example: "SODIMM":{"temp3_input":34.0} becomes "SODIMM 3":{"temp3_input":34.0}\ # Example: "SODIMM":{"temp3_input":34.0} becomes "SODIMM 3":{"temp3_input":34.0}\
$res->{sensorsOutput} =~ s/"SODIMM"\\s*:\\s*\\{\\s*"temp(\\d+)_input"/"SODIMM $1": {\\n "temp$1_input"/g;\ $res->{sensorsOutput} =~ s/"SODIMM"\\s*:\\s*\\{\\s*"temp(\\d+)_input"/"SODIMM $1": {\\n "temp$1_input"/g;\
\ \