some updates
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
import {ChatCommand} from "../base/chat-command";
|
||||
import {logError, oldSendMessage} from "../util/utils";
|
||||
import {logError, replyToMessage} from "../util/utils";
|
||||
import {Message} from "typescript-telegram-bot-api";
|
||||
import {systemInfoText} from "../index";
|
||||
|
||||
export class SystemInfo extends ChatCommand {
|
||||
title = "/systemInfo";
|
||||
description = "System information";
|
||||
|
||||
private static systemInfoText: string;
|
||||
|
||||
static setSystemInfo(info: string) {
|
||||
SystemInfo.systemInfoText = info;
|
||||
}
|
||||
|
||||
async execute(msg: Message) {
|
||||
await oldSendMessage(msg, systemInfoText).catch(logError);
|
||||
await replyToMessage({message: msg, text: SystemInfo.systemInfoText}).catch(logError);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user