Open Red7Hunter opened 4 years ago
Hmmm.. it doesnt seem to correct it all the time. I'll do some more testing tonight see if u can figure it out.
Red
Had the same problem: https://github.com/afaqurk/linux-dash/issues/490 Reverting one commit fixed it.
Hello! First time installing and running...
I wasn't able to get only a few data collections to show on web interface.. I look around and found some examples of changing the _parseAndPrint.. but those didnt work I made a slight modification to othere people solutions.. I am also using node.
Commented out code _parseAndPrint() { while read data; do $ECHO -n "$data" | $SED -r 's/\//g' | $TR -d "\n"; done; }
New code:
_parseAndPrint() { while read data; do $ECHO -n "$data" done; }
Looks like everything is now outputing data.
Hope this helps.
Red.