Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
Merge 97825ac into 55c39df
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzodeinegri committed Apr 14, 2020
2 parents 55c39df + 97825ac commit d9b0e74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const botLogin = (bot) => {
const username = message.from.username;
const chatId = message.from.id;
axios
.post(`http://core.host.redroundrobin.site:9999/auth/telegram`, {
.post(`http://thirema_api:9999/auth/telegram`, {
telegramName: username,
telegramChat: chatId,
})
Expand Down
2 changes: 1 addition & 1 deletion commands/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const axios = require("axios");
const botStatus = (bot) => {
bot.command("status", (message) => {
axios
.get(`http://core.host.redroundrobin.site:9999/status`)
.get(`http://thirema_api:9999/status`)
.then((res) => {
const data = res.data;
const name = data.name;
Expand Down

0 comments on commit d9b0e74

Please sign in to comment.