Ver código fonte

Change VERSION reply to use HTTPS url :)

pull/159/head
Chris Smith 9 anos atrás
pai
commit
b91f2c1d9f
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      src/com/dmdirc/Server.java

+ 1
- 1
src/com/dmdirc/Server.java Ver arquivo

1040
         if ("VERSION".equalsIgnoreCase(type)) {
1040
         if ("VERSION".equalsIgnoreCase(type)) {
1041
             parser.sendCTCPReply(source, "VERSION", "DMDirc "
1041
             parser.sendCTCPReply(source, "VERSION", "DMDirc "
1042
                     + getConfigManager().getOption("version", "version")
1042
                     + getConfigManager().getOption("version", "version")
1043
-                    + " - http://www.dmdirc.com/");
1043
+                    + " - https://www.dmdirc.com/");
1044
         } else if ("PING".equalsIgnoreCase(type)) {
1044
         } else if ("PING".equalsIgnoreCase(type)) {
1045
             parser.sendCTCPReply(source, "PING", args);
1045
             parser.sendCTCPReply(source, "PING", args);
1046
         } else if ("CLIENTINFO".equalsIgnoreCase(type)) {
1046
         } else if ("CLIENTINFO".equalsIgnoreCase(type)) {

Carregando…
Cancelar
Salvar