Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/5272078ea3162688cffab9148f2f4e2b9fa54395 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Sorting by age when releases are less than a day old

Fixes 
pull/3019/head
Mark McDowall 6 years ago
parent b6257400ec
commit 5272078ea3

@ -27,6 +27,9 @@ export const defaultState = {
sortKey: 'releaseWeight',
sortDirection: sortDirections.ASCENDING,
sortPredicates: {
age: function(item, direction) {
return item.ageMinutes;
},
peers: function(item, direction) {
const seeders = item.seeders || 0;
const leechers = item.leechers || 0;

Loading…
Cancel
Save