Browse Source

Merge pull request #159 from csmith/master

Change VERSION reply to use HTTPS url :)
pull/160/head
Greg Holmes 9 years ago
parent
commit
29853ae709
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/Server.java

+ 1
- 1
src/com/dmdirc/Server.java View File

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)) {

Loading…
Cancel
Save