mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-29 07:20:35 +00:00
Bump ospackage plugin
This commit is contained in:
@@ -74,9 +74,11 @@ public class SentryErrorHandler implements ErrorHandler {
|
||||
ObjectInputStream ois = new ObjectInputStream(bais);
|
||||
var copy = (Throwable) ois.readObject();
|
||||
|
||||
var msgField = Throwable.class.getDeclaredField("detailMessage");
|
||||
msgField.setAccessible(true);
|
||||
msgField.set(copy, null);
|
||||
if (!(copy instanceof NullPointerException)) {
|
||||
var msgField = Throwable.class.getDeclaredField("detailMessage");
|
||||
msgField.setAccessible(true);
|
||||
msgField.set(copy, null);
|
||||
}
|
||||
|
||||
if (copy instanceof FileSystemException) {
|
||||
var fileField = FileSystemException.class.getDeclaredField("file");
|
||||
|
||||
Vendored
+1
-1
@@ -1,7 +1,7 @@
|
||||
|
||||
plugins {
|
||||
id 'org.beryx.jlink' version '3.2.1'
|
||||
id("com.netflix.nebula.ospackage") version "12.1.1"
|
||||
id("com.netflix.nebula.ospackage") version "12.2.0"
|
||||
id 'org.gradle.crypto.checksum' version '1.4.0'
|
||||
id 'signing'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user