Skip to content

Commit

Permalink
Add missing catch
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytv committed Feb 1, 2024
1 parent 7f856a1 commit 8bc5be8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions patches/server/0013-Paper-Plugins.patch
Original file line number Diff line number Diff line change
Expand Up @@ -5480,10 +5480,10 @@ index 0000000000000000000000000000000000000000..49a087381307eab263f7dad43aaa2598
+}
diff --git a/src/main/java/io/papermc/paper/plugin/provider/source/DirectoryProviderSource.java b/src/main/java/io/papermc/paper/plugin/provider/source/DirectoryProviderSource.java
new file mode 100644
index 0000000000000000000000000000000000000000..3185c91e859013d0a222cc5a559e30c4bd9da84a
index 0000000000000000000000000000000000000000..162c8ce2cb5e5863ea88c1bfbe90ab45288b50e4
--- /dev/null
+++ b/src/main/java/io/papermc/paper/plugin/provider/source/DirectoryProviderSource.java
@@ -0,0 +1,65 @@
@@ -0,0 +1,67 @@
+package io.papermc.paper.plugin.provider.source;
+
+import com.mojang.logging.LogUtils;
Expand Down Expand Up @@ -5518,6 +5518,8 @@ index 0000000000000000000000000000000000000000..3185c91e859013d0a222cc5a559e30c4
+ this.walkFiles(context, path -> {
+ try {
+ super.prepareContext(path);
+ } catch (IllegalArgumentException ignored) {
+ // Ignore illegal argument exceptions from jar checking
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
Expand All @@ -5531,7 +5533,7 @@ index 0000000000000000000000000000000000000000..3185c91e859013d0a222cc5a559e30c4
+ try {
+ super.registerProviders(entrypointHandler, path);
+ } catch (IllegalArgumentException ignored) {
+ // Ignore initial argument exceptions
+ // Ignore illegal argument exceptions from jar checking
+ } catch (Exception e) {
+ LOGGER.error("Error loading plugin: " + e.getMessage(), e);
+ }
Expand Down

0 comments on commit 8bc5be8

Please sign in to comment.