mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Set userAgent on detail view webview. Fix #236.
This commit is contained in:
@@ -10,6 +10,7 @@ import Foundation
|
||||
import WebKit
|
||||
import RSCore
|
||||
import Data
|
||||
import RSWeb
|
||||
|
||||
class DetailViewController: NSViewController, WKNavigationDelegate, WKUIDelegate {
|
||||
|
||||
@@ -49,6 +50,10 @@ class DetailViewController: NSViewController, WKNavigationDelegate, WKUIDelegate
|
||||
webview.uiDelegate = self
|
||||
webview.navigationDelegate = self
|
||||
webview.translatesAutoresizingMaskIntoConstraints = false
|
||||
if let userAgent = UserAgent.fromInfoPlist() {
|
||||
webview.customUserAgent = userAgent
|
||||
}
|
||||
|
||||
let boxView = self.view as! DetailBox
|
||||
boxView.contentView = webview
|
||||
boxView.rs_addFullSizeConstraints(forSubview: webview)
|
||||
|
||||
Reference in New Issue
Block a user