Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion public/yts-mirrors.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"mirrors": [
"https://movies-api.accel.li/api/v2/", // ← New Official

Copilot AI Mar 22, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

public/yts-mirrors.json is no longer valid JSON because it contains an inline // comment after the URL. This will prevent axios.get(REMOTE_MIRRORS_URL) from parsing data.mirrors, causing the app to silently fall back to the hardcoded mirror list and making this update ineffective. Remove the comment (or move the “New Official” note to documentation or a separate field while keeping mirrors as an array of strings).

Suggested change
"https://movies-api.accel.li/api/v2/", // ← New Official
"https://movies-api.accel.li/api/v2/",

Copilot uses AI. Check for mistakes.
"https://yts.bz/api/v2/",
"https://yts.gg/api/v2/",
"https://yts.lt/api/v2/",
"https://yts.am/api/v2/",
"https://yts.ag/api/v2/"
]
}
}
Loading