remove unused js file that was part of the bad-version-code-fix plugin - which turned out to be a bad idea

This commit is contained in:
Jon Atkins 2014-08-08 03:36:34 +01:00
parent 963232a98e
commit 95e671e2f5

View File

@ -1,21 +0,0 @@
// this script can be loaded by an IITC plugin, to fix known bad version codes when Niantic have a bad deployment
(function(){
var fixes = {
// 2014-08-02 - broken for 24h+
'81ad679ab5bc219ef3bcf7ca9b760e917cf0c558': 'afdb91368730a906bae38b2837cc411f880350fa',
};
var fixed = fixes[nemesis.dashboard.config.CURRENT_VERSION];
if (fixed) {
console.warn('VersionCodeFixer: bad nemesis.dashboard.config.CURRENT_VERSION: is '+nemesis.dashboard.config.CURRENT_VERSION+', should be '+fixed);
nemesis.dashboard.config.CURRENT_VERSION = fixed;
} else {
console.log('VersionCodeFixer: no known fixes needed');
}
})();