mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-09-19 05:16:27 -07:00
fix(stats): keep same-title anime and YouTube records separate
- Scope title identity, aliases, AniList matching, and sync by media kind - Migrate legacy schemas while preserving IDs, history, and assignments
This commit is contained in:
@@ -69,7 +69,9 @@ function findButton(container: Element, label: string): HTMLElement {
|
||||
|
||||
/** Library cards only expose aria-pressed while selection mode is on. */
|
||||
function cardButtons(container: Element): HTMLButtonElement[] {
|
||||
return [...container.querySelectorAll('.grid button[aria-pressed]')] as unknown as HTMLButtonElement[];
|
||||
return [
|
||||
...container.querySelectorAll('.grid button[aria-pressed]'),
|
||||
] as unknown as HTMLButtonElement[];
|
||||
}
|
||||
|
||||
function mergeButton(container: Element): HTMLButtonElement {
|
||||
|
||||
Reference in New Issue
Block a user