Add "local source" as possible migration destination source

closes #1107
This commit is contained in:
schroda
2026-05-18 20:07:32 +02:00
parent 299eb828ef
commit 7bed3beb1e
2 changed files with 2 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- (**Migration**) Add a search option to ignore outdated matches - (**Migration**) Add a search option to ignore outdated matches
- (**Migration**) Add a search option to ignore matches with missing chapters - (**Migration**) Add a search option to ignore matches with missing chapters
- (**Migration**) Add "local source" as a possible destination source
### Changed ### Changed

View File

@@ -53,6 +53,7 @@ export const MigrationSelectDestinationSources = () => {
const filteredSources = Sources.filter(allSources, { const filteredSources = Sources.filter(allSources, {
languages: browseLanguages, languages: browseLanguages,
isNsfw: showNsfw ? undefined : false, isNsfw: showNsfw ? undefined : false,
keepLocalSource: true,
}); });
return Object.values(Sources.groupByLanguage(filteredSources)).flat(); return Object.values(Sources.groupByLanguage(filteredSources)).flat();