Skip to content

Commit

Permalink
fix(play): patch translation
Browse files Browse the repository at this point in the history
  • Loading branch information
eritislami committed Sep 4, 2021
1 parent f1c5f73 commit 439f122
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
1. [Fork the repository](https://github.com/eritislami/evobot/fork)
2. Clone your fork: `git clone https://github.com/your-username/evobot.git`
3. Create your feature branch: `git checkout -b my-new-feature`
4. Stage add changes to staging `git add .`
4. Stage changes `git add .`
5. Commit your changes: `cz` OR `npm run commit` do not use `git commit`
6. Push to the branch: `git push origin my-new-feature`
7. Submit a pull request
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Examples: `1` or `1,2,3`
1. [Fork the repository](https://github.com/eritislami/evobot/fork)
2. Clone your fork: `git clone https://github.com/your-username/evobot.git`
3. Create your feature branch: `git checkout -b my-new-feature`
4. Stage add changes to staging `git add .`
4. Stage changes `git add .`
5. Commit your changes: `cz` OR `npm run commit` do not use `git commit`
6. Push to the branch: `git push origin my-new-feature`
7. Submit a pull request
Expand Down
2 changes: 1 addition & 1 deletion commands/play.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ module.exports = {
const results = await youtube.searchVideos(search, 1, { part: "snippet" });

if (!results.length) {
message.reply(i18n.__mf("play.songNotFound")).catch(console.error);
message.reply(i18n.__("play.songNotFound")).catch(console.error);
return;
}

Expand Down

0 comments on commit 439f122

Please sign in to comment.