HaJaeKyung / KittyExtension

Fan add-on for https://www.cryptokitties.co
MIT License
232 stars 88 forks source link

Fixed Bug Resting\Bun in oven changePrices bug #31

Open PantsStatusZero opened 6 years ago

PantsStatusZero commented 6 years ago

changePrices tries to convert Resting \ Bun in the oven status into US dollars which displays a NaN status. This change prevents that from happening.

PantsStatusZero commented 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 image

After this fix image

HaJaeKyung commented 6 years ago

This should be fixed now.