Skip to content

Commit

Permalink
Merge branch 'master' of github.com:howdyai/botkit
Browse files Browse the repository at this point in the history
  • Loading branch information
benbrown committed Dec 20, 2018
2 parents c940b00 + e768f59 commit bb1edd6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

** DO NOT ERASE THESE INSTRUCTIONS WITHOUT READING THEM FIRST **

Please read this entire template before posting any issue to get faster response.

Open an issue on this repository with your topic or question, providing as much detail as possible. The more we know, the better we can help.

Before posting, search the repository to see if there's already an issue opened to avoid duplicates.

### Are you sure this is an issue with the Botkit core module?

For all other questions, requests or help, please feel free to join the discussion slack : https://community.botkit.ai

### What are you trying to achieve or the steps to reproduce?

Describe your issue here, include as much detail as necessary to reproduce the issue or implement a missing functionality.

````
// Wrap code in markdown source tags
````

### What was the result you received?

### What did you expect?

### Screenshots and animated GIFs

### Context:

- Botkit version:
- Messaging Platform:
- Node version:
- Os:
- Any other relevant information:
4 changes: 2 additions & 2 deletions lib/SlackBot.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function Slackbot(configuration) {
if (!slack_botkit.config.clientId) {
bot = slack_botkit.spawn({});
} else {
return res.status(500).send();
return res.status(404).send();
}
} else {
// spawn a bot
Expand All @@ -303,7 +303,7 @@ function Slackbot(configuration) {

if (!team.bot) {
slack_botkit.log.error('No bot identity found.');
return res.status(500).send();
return res.status(404).send();
}

}
Expand Down

0 comments on commit bb1edd6

Please sign in to comment.