chore: remove unnecessary auto-enable reading_status_provider on link

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 17:41:21 +01:00
parent b61ab45fb4
commit f2fa4e3ce8

View File

@@ -380,14 +380,6 @@ pub async fn link_series(
} }
}; };
// Auto-enable reading_status_provider on the library when linking a series
let _ = sqlx::query(
"UPDATE libraries SET reading_status_provider = 'anilist' WHERE id = $1 AND reading_status_provider IS NULL",
)
.bind(library_id)
.execute(&state.pool)
.await;
let row = sqlx::query( let row = sqlx::query(
r#" r#"
INSERT INTO anilist_series_links (library_id, series_name, provider, anilist_id, anilist_title, anilist_url, status, linked_at) INSERT INTO anilist_series_links (library_id, series_name, provider, anilist_id, anilist_title, anilist_url, status, linked_at)