You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/Store/Migrators/migrateAuthorSortKey.js

16 lines
447 B

import { get, set } from 'lodash';
const TABLES_TO_MIGRATE = ['blocklist', 'history', 'queue.paged', 'wanted.missing', 'wanted.cutoffUnmet'];
export default function migrateAuthorSortKey(persistedState) {
for (const table of TABLES_TO_MIGRATE) {
const key = `${table}.sortKey`;
const sortKey = get(persistedState, key);
if (sortKey === 'authors.sortName') {
set(persistedState, key, 'authorMetadata.sortName');
}
}
}