From 772e13caa857f2b4c1b796aaff4332f7c171272f Mon Sep 17 00:00:00 2001 From: x Date: Sun, 17 Aug 2025 15:33:17 +0200 Subject: [PATCH] fix ids --- src/inc/events/callback_query.mjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/inc/events/callback_query.mjs b/src/inc/events/callback_query.mjs index 2bbe9c5..7e4cde9 100644 --- a/src/inc/events/callback_query.mjs +++ b/src/inc/events/callback_query.mjs @@ -8,16 +8,16 @@ import lib from "../lib.mjs"; const tagkeyboard = id => { const tags = [{ tag: 'music', - id: 115 + id: 9124 }, { tag: 'german', - id: 329 + id: 9161 }, { tag: 'cat', - id: 217 + id: 559 }, { tag: 'doggo', - id: 5 + id: 10932 }]; return Promise.all(tags.map(async t => ({ text: `${await lib.hasTag(id, t.id) ? '✓ ' : ''}${t.tag}`, callback_data: `b_settag_${t.id}:${id}` }))); };