Skip to content

Commit

Permalink
Replace remote config url to fix certificate issues
Browse files Browse the repository at this point in the history
Github replaced their certificate, making it invalid with the CA certs of Java 8u51.
See #83 for details
  • Loading branch information
dogboy21 authored Mar 16, 2024
1 parent d77f4ac commit 5c691ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class SIBConfig {

public SIBConfig() {
this.useRemoteConfig = true;
this.remoteConfigUrl = "https://raw.githubusercontent.com/dogboy21/serializationisbad/master/serializationisbad.json";
this.remoteConfigUrl = "https://serializationisbad.dogboy.io/serializationisbad.json";
this.executeBlocking = true;
this.patchModules = new ArrayList<>();
this.classAllowlist = new HashSet<>();
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=io.dogboy.serializationisbad
name=serializationisbad
version=1.5
version=1.5.1

0 comments on commit 5c691ea

Please sign in to comment.