ksiondag / browsing_costs

A gamified Chrome extension productivity tool.
0 stars 0 forks source link

Version numbers checked incorrectly in update.js #17

Open ksiondag opened 8 years ago

ksiondag commented 8 years ago

Check currently is:

version >= '0.1.2'

If version were '0.1.10', this would return false.

Need to compare via Array.split('.') and compare the numbers at each index.