changeset 332:a23d14994729

Mac: Add an exception to Info.plist to allow insecure URL loads on 10.11.
author Brian Smith <brian@dbsoft.org>
date Fri, 25 Oct 2019 17:36:13 -0500
parents af50ca1de233
children 3f525141ee34
files mac/Info.plist
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mac/Info.plist	Fri Oct 25 17:20:01 2019 -0500
+++ b/mac/Info.plist	Fri Oct 25 17:36:13 2019 -0500
@@ -46,8 +46,10 @@
 	<string>NSApplication</string>
 	<key>NSAppTransportSecurity</key>
 	<dict>
-	    <key>NSAllowsArbitraryLoadsInWebContent</key>
-	    <true/>
+		<key>NSAllowsArbitraryLoadsInWebContent</key>
+		<true/>
+		<key>NSAllowsArbitraryLoads</key>
+		<true/>
 	</dict>
 </dict>
 </plist>