mirror of
https://github.com/thegeneralist01/archivr
synced 2026-07-22 11:15:41 +02:00
Previous fix excluded /watch but still returned true for any youtube.com
URL with a ?list= param (e.g. /shorts/xxx?list=yyy). Backend determine_source
only routes to YouTubePlaylist on /playlist?list=... and to YouTubeChannel on
/@handle, /channel/, /c/, /user/ paths — everything else is a single item.
Rewrite the HTTP block to match:
- youtube.com: pathname==='/playlist' && list param → playlist
: /@, /channel/, /c/, /user/ → channel
: anything else (incl. /watch&list=, /shorts?list=) → false
- music.youtube.com: pathname==='/playlist' && list param → YTM playlist
: /watch → single track (falls through to false)
|
||
|---|---|---|
| .. | ||
| AdminView.jsx | ||
| AudioBar.jsx | ||
| CaptureDialog.jsx | ||
| CaptureDialog.stories.jsx | ||
| CollectionsView.jsx | ||
| ContextRail.jsx | ||
| EntriesView.jsx | ||
| EntryRow.jsx | ||
| EntryRow.stories.jsx | ||
| IframePreview.jsx | ||
| ImagePreview.jsx | ||
| LoginPage.jsx | ||
| PreviewModal.jsx | ||
| PreviewPage.jsx | ||
| PreviewPanel.jsx | ||
| RunsView.jsx | ||
| SettingsView.jsx | ||
| SetupPage.jsx | ||
| SkeletonEntryRow.jsx | ||
| TagsView.jsx | ||
| TagsView.stories.jsx | ||
| ToastStack.jsx | ||
| Topbar.jsx | ||
| Topbar.stories.jsx | ||
| TweetPreview.jsx | ||
| UIPatterns.stories.jsx | ||
| VideoPreview.jsx | ||