Open PantsStatusZero opened 6 years ago
The return; in my fix should have been a continue;
let text = item.getElementsByTagName('span')[0].innerText;
if(text.toUpperCase().indexOf("HOURS")>0){
continue;
}
Before this fix
After this fix
This should be fixed now.
changePrices tries to convert Resting \ Bun in the oven status into US dollars which displays a NaN status. This change prevents that from happening.