diff options
author | Damiano Galassi <[email protected]> | 2015-12-14 17:19:04 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-12-14 17:19:04 +0100 |
commit | 49c9165debefbae9a5b944033c51af5c565db857 (patch) | |
tree | 48a0636b370d16349ed4db003583b80093c13925 /macosx | |
parent | 005792442478b3060f46fd001e3b49991265b251 (diff) |
MacGui: add an exception to enable http connections to handbrake.fr
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Info.plist.m4 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/macosx/Info.plist.m4 b/macosx/Info.plist.m4 index a75471578..6c58f7ada 100644 --- a/macosx/Info.plist.m4 +++ b/macosx/Info.plist.m4 @@ -66,5 +66,18 @@ All rights reserved.</string> <string>HBApplication</string> <key>SUFeedURL</key> <string>__HB_url_appcast</string> + <key>NSAppTransportSecurity</key> + <dict> + <key>NSExceptionDomains</key> + <dict> + <key>handbrake.fr</key> + <dict> + <key>NSIncludesSubdomains</key> + <true/> + <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> + <true/> + </dict> + </dict> + </dict> </dict> </plist> |