Use https for GitHub issue link

This commit is contained in:
Jo0001 2020-08-22 11:44:51 +02:00 committed by GitHub
parent 13ee674d96
commit be31c705b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ public class InformativeException extends Exception {
@Override
public String getMessage() {
StringBuilder builder = new StringBuilder();
builder.append("Please post this error to http://github.com/ViaVersion/ViaVersion/issues\n{");
builder.append("Please post this error to https://github.com/ViaVersion/ViaVersion/issues\n{");
int i = 0;
for (Map.Entry<String, Object> entry : info.entrySet()) {
builder.append(i == 0 ? "" : ", ").append(entry.getKey()).append(": ").append(entry.getValue().toString());