Browse Source

Don't show double updater name

tags/build/2.0.8.1
Ruud 12 years ago
parent
commit
88e738c6cd
  1. 2
      couchpotato/static/scripts/page/about.js

2
couchpotato/static/scripts/page/about.js

@ -117,7 +117,7 @@ var AboutSettingTab = new Class({
var self = this;
var date = new Date(json.version.date * 1000);
self.version_text.set('text', json.version.hash + (json.version.date ? ' ('+date.toLocaleString()+')' : ''));
self.updater_type.set('text', json.version.type + ', ' + json.branch);
self.updater_type.set('text', (json.version.type != json.branch) ? (json.version.type + ', ' + json.branch) : json.branch);
}
});

Loading…
Cancel
Save