summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPanu Oksiala <panu@pumppu.pohina.io>2024-03-16 11:07:01 +0200
committerPanu Oksiala <panu@pumppu.pohina.io>2024-03-16 11:07:01 +0200
commit80f909d24748bae652442e6f884dbb07273e9165 (patch)
tree514a7943b76a3f1b36f30c435a05f8c4a6bca3a2
parent4781eda76880886cee2858de66d7445eb13ff252 (diff)
Fix channel message language
Lähetetty FreeBSD:stä Signed-off-by: Panu Oksiala <panu@pumppu.pohina.io>
-rw-r--r--src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index a168e95..0b13af9 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -45,7 +45,7 @@ app.command("/veeti", async ({ command, ack, respond, client }) => {
console.log("Sending message to channel", command.channel_id);
await client.filesUploadV2({
channel_id: command.channel_id,
- initial_comment: `By: @${command.user_name}`,
+ initial_comment: `Lähettäjä: @${command.user_name}`,
file: fileContent,
filename: fileName,
});