some updates

This commit is contained in:
2026-01-28 19:47:50 +03:00
parent 8cf1773926
commit 73905780b9
3 changed files with 19 additions and 12 deletions
+8 -3
View File
@@ -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);
}
}