mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
Fix parsing playlist urls (with list parameter)
This commit is contained in:
parent
f25005536c
commit
d47ecb2723
@ -39,6 +39,7 @@ final class URLParserTests: XCTestCase {
|
||||
"https://www.youtube.com/playlist?list=PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU": "PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU",
|
||||
"https://www.youtube.com/watch?v=playlist&list=PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU": "PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU",
|
||||
"youtube.com/watch?v=playlist&list=PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU": "PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU",
|
||||
"https://www.youtube.com/watch?v=ZyhrYis509A&list=PL7DA3D097D6FDBC02": "PL7DA3D097D6FDBC02",
|
||||
"/watch?v=playlist&list=PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU": "PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU",
|
||||
"watch?v=playlist&list=PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU": "PLDIoUOhQQPlXr63I_vwF9GD8sAKh77dWU",
|
||||
"playlist?list=ABCDE": "ABCDE"
|
||||
|
@ -147,7 +147,9 @@ struct Sidebar: View {
|
||||
}
|
||||
}
|
||||
|
||||
private func scrollScrollViewToItem(scrollView: ScrollViewProxy, for selection: TabSelection) {
|
||||
private func scrollScrollViewToItem(scrollView: ScrollViewProxy, for selection: TabSelection!) {
|
||||
guard let selection else { return }
|
||||
|
||||
if case .recentlyOpened = selection {
|
||||
scrollView.scrollTo("recentlyOpened")
|
||||
return
|
||||
|
@ -39,7 +39,10 @@ struct URLParser {
|
||||
if hasAnyOfPrefixes(path, ["popular"]) { return .popular }
|
||||
if hasAnyOfPrefixes(path, ["trending"]) { return .trending }
|
||||
|
||||
if hasAnyOfPrefixes(path, Self.prefixes[.playlist]!) || queryItemValue("v") == "playlist" {
|
||||
if hasAnyOfPrefixes(path, Self.prefixes[.playlist]!) ||
|
||||
queryItemValue("v") == "playlist" ||
|
||||
!(queryItemValue("list")?.isEmpty ?? false)
|
||||
{
|
||||
return .playlist
|
||||
}
|
||||
if hasAnyOfPrefixes(path, Self.prefixes[.channel]!) {
|
||||
|
Loading…
Reference in New Issue
Block a user