From 7bed3beb1e86a1db07c69616cbcad6e42ddbbac9 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Mon, 18 May 2026 20:07:32 +0200 Subject: [PATCH] Add "local source" as possible migration destination source closes #1107 --- CHANGELOG.md | 1 + .../migration/screens/MigrationSelectDestinationSources.tsx | 1 + 2 files changed, 2 insertions(+) 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();