diff options
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinThreadDownloadImageDataThread.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinThreadDownloadImageDataThread.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinThreadDownloadImageDataThread.java b/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinThreadDownloadImageDataThread.java index aea52378..ac8868e6 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinThreadDownloadImageDataThread.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/mixins/MixinThreadDownloadImageDataThread.java @@ -35,9 +35,11 @@ public class MixinThreadDownloadImageDataThread { method = "run", at = @At( value = "INVOKE", - target = "Ljava/net/HttpURLConnection;setDoOutput(Z)V" + target = "Ljava/net/HttpURLConnection;setDoOutput(Z)V", + remap = false ), - locals = LocalCapture.CAPTURE_FAILSOFT + locals = LocalCapture.CAPTURE_FAILSOFT, + remap = false ) public void patchHttpConnection(CallbackInfo ci, HttpURLConnection httpURLConnection) { ThreadDownloadImageHook.hookThreadImageConnection(httpURLConnection); |
