Skip to content

Commit bacb156

Browse files
authored
Allow http from asset.localhost and textures.minecraft.net on mac (#3922)
1 parent b8521f9 commit bacb156

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

apps/app/Info.plist

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,25 @@
1818
<string>A Minecraft mod wants to access your camera.</string>
1919
<key>NSMicrophoneUsageDescription</key>
2020
<string>A Minecraft mod wants to access your microphone.</string>
21+
<key>NSAppTransportSecurity</key>
22+
<dict>
23+
<key>NSExceptionDomains</key>
24+
<dict>
25+
<key>asset.localhost</key>
26+
<dict>
27+
<key>NSExceptionAllowsInsecureHTTPLoads</key>
28+
<true/>
29+
<key>NSIncludesSubdomains</key>
30+
<true/>
31+
</dict>
32+
<key>textures.minecraft.net</key>
33+
<dict>
34+
<key>NSExceptionAllowsInsecureHTTPLoads</key>
35+
<true/>
36+
<key>NSIncludesSubdomains</key>
37+
<true/>
38+
</dict>
39+
</dict>
40+
</dict>
2141
</dict>
2242
</plist>

0 commit comments

Comments
 (0)