Skip to content
This repository has been archived by the owner on Apr 10, 2019. It is now read-only.

Commit

Permalink
change message box text
Browse files Browse the repository at this point in the history
Enter a description -> Enter Your Name
  • Loading branch information
Hironsan committed Feb 28, 2017
1 parent 7d75e87 commit 319de44
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ConsoleErrorInputFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public List<Pair<String, ConsoleViewContentType>> applyFilter(String text, Conso
for (SlackChannel slackChannel: SlackStorage.getInstance().channelsRegistry) {
SlackPost post = new SlackPost(slackChannel);
String message = hm.toString();
String detail = "Hironsan is in trouble with the following error.";
System.out.println(message);
String detail = slackChannel.getId() + " is in trouble with the following error.";
try {
post.pushMessage(message, detail);
} catch (IOException e) {
Expand Down
2 changes: 1 addition & 1 deletion src/com/chakki_works/watchme/SlackChannel.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String getId() {
}

public static String getIdDescription() {
return "Enter a Description";
return "Enter Your Name";
}

public String getToken() {
Expand Down

0 comments on commit 319de44

Please sign in to comment.