bot commited on
Commit
4cbabb4
·
1 Parent(s): 41538d2
Files changed (1) hide show
  1. main.py +6 -2
main.py CHANGED
@@ -245,8 +245,12 @@ async def tg_show_shares(update: Update, context: CallbackContext):
245
  for share in shares["data"]:
246
  keyboard.append(
247
  [
248
- InlineKeyboardButton(f"{share['title']}"),
249
- InlineKeyboardButton(f"{share['share_id']}"),
 
 
 
 
250
  InlineKeyboardButton(
251
  f"取消",
252
  callback_data=f"del_s:{share['share_id']}",
 
245
  for share in shares["data"]:
246
  keyboard.append(
247
  [
248
+ InlineKeyboardButton(
249
+ f"{share['title']}", callback_data=f"showButton"
250
+ ),
251
+ InlineKeyboardButton(
252
+ f"{share['share_id']}", callback_data=f"showButton"
253
+ ),
254
  InlineKeyboardButton(
255
  f"取消",
256
  callback_data=f"del_s:{share['share_id']}",