diff --git a/JellyfinPlayer/ImageView.swift b/JellyfinPlayer/ImageView.swift index 46918cd4..7276646f 100644 --- a/JellyfinPlayer/ImageView.swift +++ b/JellyfinPlayer/ImageView.swift @@ -13,16 +13,16 @@ import NukeUI struct ImageView: View { private var source: URL = URL(string: "https://example.com")! private var blurhash: String = "001fC^" - + init(src: URL) { self.source = src } - + init(src: URL, bh: String) { self.source = src self.blurhash = bh } - + var body: some View { LazyImage(source: source, content: { state in if let image = state.image {