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

New: Remember sorting for manual import

pull/3130/head
Bogdan 1 year ago
parent 61004ea33f
commit 2121204064

@ -35,6 +35,8 @@ export const defaultState = {
pendingChanges: {},
sortKey: 'path',
sortDirection: sortDirections.ASCENDING,
secondarySortKey: 'path',
secondarySortDirection: sortDirections.ASCENDING,
recentFolders: [],
importMode: 'chooseImportMode',
sortPredicates: {
@ -75,6 +77,8 @@ export const defaultState = {
};
export const persistState = [
'interactiveImport.sortKey',
'interactiveImport.sortDirection',
'interactiveImport.recentFolders',
'interactiveImport.importMode'
];

Loading…
Cancel
Save