浏览代码

Include URL in issue link

master
Chris Smith 15 年前
父节点
当前提交
b3cbb29147
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      src/com/md87/charliebravo/commands/IssueCommand.java

+ 2
- 1
src/com/md87/charliebravo/commands/IssueCommand.java 查看文件

@@ -55,7 +55,8 @@ public class IssueCommand implements Command {
55 55
                 response.sendMessage("issue " + data.get("id") + " is \""
56 56
                         + data.get("summary").substring(9) + "\". Current "
57 57
                         + "status is " + data.get("status") + " ("
58
-                        + data.get("resolution") + ")");
58
+                        + data.get("resolution") + "). See http://bugs.dmdirc.com/view/"
59
+                        + data.get("id"));
59 60
                 response.addFollowup(new IssueFollowup(data));
60 61
             }
61 62
             

正在加载...
取消
保存