diff --git a/Frameworks/Account/FeedProvider/Reddit/RedditLink.swift b/Frameworks/Account/FeedProvider/Reddit/RedditLink.swift index 25c29b8e8..65378b311 100644 --- a/Frameworks/Account/FeedProvider/Reddit/RedditLink.swift +++ b/Frameworks/Account/FeedProvider/Reddit/RedditLink.swift @@ -105,7 +105,7 @@ final class RedditLinkData: Codable { if let width = media?.video?.width, let height = media?.video?.height { html += "width=\"\(width)\" height=\"\(height)\" " } - html += "src=\"\(videoURL)\" autoplay muted>" + html += "src=\"\(videoURL)\" autoplay muted loop>" return html } @@ -117,7 +117,7 @@ final class RedditLinkData: Codable { if let width = preview?.videoPreview?.width, let height = preview?.videoPreview?.height { html += "width=\"\(width)\" height=\"\(height)\" " } - html += "src=\"\(videoPreviewURL)\" autoplay muted>" + html += "src=\"\(videoPreviewURL)\" autoplay muted loop>" html += linkURL(url) return html }