We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cf26a7 commit e5f3c7cCopy full SHA for e5f3c7c
src/main/java/org/maxgamer/quickshop/util/reporter/error/RollbarErrorReporter.java
@@ -207,6 +207,10 @@ public boolean canReport(@NotNull Throwable throwable) {
207
if (!plugin.getUpdateWatcher().getUpdater().isLatest()) { // We only receive latest reports.
208
return false;
209
}
210
+ if (!plugin.getBuildInfo().buildUrl.getBuildUrl().startsWith("https://ci.codemc.io/job/PotatoCraft-Studio/")) { // Ignored custom build or 3rd fork
211
+ return false;
212
+ }
213
+
214
if (!GameVersion.get(ReflectFactory.getServerVersion()).isCoreSupports()) { // Ignore errors if user install quickshop on unsupported
215
// version.
216
0 commit comments