Fix opening channels and playlists

This commit is contained in:
Arkadiusz Fal 2023-05-21 14:01:33 +02:00
parent 4c5ef920b4
commit 97af5a6e0c
3 changed files with 5 additions and 5 deletions

View File

@ -85,7 +85,6 @@ struct ChannelPlaylistView: View {
}
}
#endif
#if os(macOS)
.toolbar {
ToolbarItem(placement: .cancellationAction) {
if showCloseButton {
@ -97,7 +96,9 @@ struct ChannelPlaylistView: View {
.buttonStyle(.plain)
}
}
}
#if os(macOS)
.toolbar {
ToolbarItem(placement: playlistButtonsPlacement) {
HStack {
ListingStyleButtons(listingStyle: $channelPlaylistListingStyle)

View File

@ -102,7 +102,7 @@ struct ContentView: View {
}
.onOpenURL { url in
URLBookmarkModel.shared.saveBookmark(url)
OpenURLHandler.shared.handle(url)
OpenURLHandler(navigationStyle: navigationStyle).handle(url)
}
.background(
EmptyView().sheet(isPresented: $navigation.presentingAddToPlaylist) {

View File

@ -4,7 +4,6 @@ import Siesta
struct OpenURLHandler {
static var firstHandle = true
static var shared = Self()
static let yatteeProtocol = "yattee://"
var accounts: AccountsModel { .shared }
@ -12,7 +11,7 @@ struct OpenURLHandler {
var recents: RecentsModel { .shared }
var player: PlayerModel { .shared }
var search: SearchModel { .shared }
var navigationStyle = NavigationStyle.sidebar
var navigationStyle: NavigationStyle
func handle(_ url: URL) {
if accounts.current.isNil {