Code style fixes

This commit is contained in:
Arkadiusz Fal 2023-04-22 10:56:18 +02:00
parent 8ef016d792
commit 5db74a3997
7 changed files with 9 additions and 9 deletions

View File

@ -54,13 +54,13 @@ final class SponsorBlockAPI: ObservableObject {
"still frame or clip which are also seen in other videos by the same creator.").localized()
case "outro":
return ("Typically near or at the end of the video when the credits pop up and/or endcards are shown.").localized()
return "Typically near or at the end of the video when the credits pop up and/or endcards are shown.".localized()
case "interaction":
return ("Explicit reminders to like, subscribe or interact with them on any paid or free platform(s) (e.g. click on a video).").localized()
return "Explicit reminders to like, subscribe or interact with them on any paid or free platform(s) (e.g. click on a video).".localized()
case "music_offtopic":
return ("For videos which feature music as the primary content.").localized()
return "For videos which feature music as the primary content.".localized()
default:
return nil

View File

@ -40,7 +40,7 @@ struct ChannelVideosView: View {
}
var contentItems: [ContentItem] {
return contentTypeItems.collection
contentTypeItems.collection
}
var body: some View {

View File

@ -223,7 +223,7 @@ struct VideoPlayerView: View {
#endif
#if !os(tvOS)
if !fullScreenPlayer && sidebarQueue {
if !fullScreenPlayer, sidebarQueue {
Spacer()
}
#endif