bot
commited on
Commit
·
38a02cd
1
Parent(s):
009429f
Fix
Browse files
main.py
CHANGED
@@ -240,7 +240,7 @@ async def handle_copy_text(update: Update, context: CallbackContext):
|
|
240 |
|
241 |
# 获取操作类型和文件 ID
|
242 |
action, text = (query.data.split(":")[0], query.data.split(":")[1])
|
243 |
-
await
|
244 |
|
245 |
|
246 |
#################### 分享操作 #############################
|
|
|
240 |
|
241 |
# 获取操作类型和文件 ID
|
242 |
action, text = (query.data.split(":")[0], query.data.split(":")[1])
|
243 |
+
await query.edit_message_text(f"{text}")
|
244 |
|
245 |
|
246 |
#################### 分享操作 #############################
|