Disallow automatic playback for all media types.

This commit is contained in:
Brent Simmons 2024-02-27 20:28:14 -08:00
parent 565b3ac2c3
commit d90e59439d
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ final class DetailWebViewController: NSViewController {
configuration.preferences = preferences
configuration.defaultWebpagePreferences.allowsContentJavaScript = AppDefaults.shared.isArticleContentJavascriptEnabled
configuration.setURLSchemeHandler(detailIconSchemeHandler, forURLScheme: ArticleRenderer.imageIconScheme)
configuration.mediaTypesRequiringUserActionForPlayback = .all
let userContentController = WKUserContentController()
userContentController.add(self, name: MessageName.windowDidScroll)