Closed jtbattle closed 4 years ago
I don't have a device and am not working on this code, but I was poking around here because I was thinking about getting a system (95% sure). Anyway, I noticed this recent change in CSVquery.cpp, line 284:
if(method.length() != 2 | method[1] < '0' | method[1] > '9') return false;
Those bitwise ORs should really be boolean ORs. It won't make a functional difference, of course, but conceptually it would be better.
While conceptually the same, this would be better functionally if submitted as a PR.
I don't have a device and am not working on this code, but I was poking around here because I was thinking about getting a system (95% sure). Anyway, I noticed this recent change in CSVquery.cpp, line 284:
Those bitwise ORs should really be boolean ORs. It won't make a functional difference, of course, but conceptually it would be better.