mirror of
https://github.com/System-End/slack-end.git
synced 2026-04-19 16:28:19 +00:00
enhancement(lint): Fix lint errors for src/commands/zeon_message.ts
Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
parent
d4bdd7dbf9
commit
79cdd373ba
1 changed files with 3 additions and 3 deletions
|
|
@ -99,14 +99,14 @@ export default class Message implements Command {
|
|||
args.shift(); // get rid of it
|
||||
// timer func
|
||||
}
|
||||
if(args[0] == "ping") {
|
||||
if (args[0] == "ping") {
|
||||
args.shift();
|
||||
// ping func
|
||||
await app.client.chat.postMessage({
|
||||
channel: event.channel,
|
||||
text: `:ping_pong: pong`,
|
||||
thread_ts: event.thread_ts
|
||||
})
|
||||
thread_ts: event.thread_ts,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue