From bc30d46438dfe903c89e9515f491835e8ff3a02b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isak=20=E2=9C=8F=20=E2=87=9D?= Date: Sun, 26 May 2024 22:35:44 +0200 Subject: [PATCH] Add uhd as quality option --- Sources/PexelsSwift/Resources/PSVideo.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/PexelsSwift/Resources/PSVideo.swift b/Sources/PexelsSwift/Resources/PSVideo.swift index 4756b89..bcb81da 100644 --- a/Sources/PexelsSwift/Resources/PSVideo.swift +++ b/Sources/PexelsSwift/Resources/PSVideo.swift @@ -84,9 +84,9 @@ public struct PSVideo: Identifiable, Codable, Equatable { /// A link to where the ``PSVideo/File`` is hosted. public var link: String - /// A collection of possible video qualities `[hd, sd, hls]`. + /// A collection of possible video qualities `[hd, sd, hls, uhd]`. public enum Quality: String, Codable { - case hd, sd, hls + case hd, sd, hls, uhd } }