diff --git a/CHANGELOG.md b/CHANGELOG.md index 4184b747..10fc63e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 matches with missing chapters +- (**Migration**) Add "local source" as a possible destination source ### Changed diff --git a/src/features/migration/screens/MigrationSelectDestinationSources.tsx b/src/features/migration/screens/MigrationSelectDestinationSources.tsx index 31aa85e0..43f224f5 100644 --- a/src/features/migration/screens/MigrationSelectDestinationSources.tsx +++ b/src/features/migration/screens/MigrationSelectDestinationSources.tsx @@ -53,6 +53,7 @@ export const MigrationSelectDestinationSources = () => { const filteredSources = Sources.filter(allSources, { languages: browseLanguages, isNsfw: showNsfw ? undefined : false, + keepLocalSource: true, }); return Object.values(Sources.groupByLanguage(filteredSources)).flat();