Skip to content

changed debug contact from towc0 to yangwao #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/start.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const getText = () => `
Welcome to PB's door bot!

If you don't have a token, contact @towc0 (Matei Copot)
If you don't have a token, contact @yangwao

The token you chose is unique to you, which means that you are responsible for whatever that token is used for, so don't share it with anyone!

Expand Down
6 changes: 3 additions & 3 deletions modules/door.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,17 +81,17 @@ const friendlyUseActionFromToken = (action, token, { from }) =>
const response = {};
switch (answer) {
case 'internal':
response.text = 'Something went wrong internally :/ Please contact @towc0';
response.text = 'Something went wrong internally :/ Please contact @yangwao';
break;
case 'invalid token':
response.text = 'Looks like your token is not valid :/ It might be a typo. If you can\'t remember it or don\'t think you have one, contact @towc0';
response.text = 'Looks like your token is not valid :/ It might be a typo. If you can\'t remember it or don\'t think you have one, contact @yangwao';
response.markup = emptyKeyboard;
break;
case 'debounced':
response.text = 'Someone is opening the door right now :) If it doesn\'t, try again in a couple of seconds';
break;
default:
response.text = 'Some unknown error happened. Please tell @towc0 so he can figure it out';
response.text = 'Some unknown error happened. Please tell @yangwao so he can figure it out';
log(`error-unknown: ${answer}`);
}

Expand Down