mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-26 07:04:49 +01:00
AppletLoader: add extra urlconnections.setUseCaches(false) as an extra precaution to make sure caching is disabled.
This commit is contained in:
parent
2eea9d90b3
commit
f965ff8f83
|
|
@ -1454,6 +1454,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
|
|||
debug_sleep(2000);
|
||||
|
||||
urlconnection = urlList[i].openConnection();
|
||||
urlconnection.setUseCaches(false);
|
||||
|
||||
if (urlconnection instanceof HttpURLConnection) {
|
||||
urlconnection.setRequestProperty("Cache-Control", "no-cache");
|
||||
|
|
|
|||
Loading…
Reference in a new issue