Browse Source

feat: image num limit

master
zhayujie 10 months ago
parent
commit
0403ff88ef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bot/linkai/link_ai_bot.py

+ 1
- 1
bot/linkai/link_ai_bot.py View File

@@ -389,7 +389,7 @@ class LinkAIBot(Bot):
try: try:
i = 0 i = 0
for url in image_urls: for url in image_urls:
if i >= 1:
if i >= 3:
continue continue
i += 1 i += 1
if url.endswith(".mp4"): if url.endswith(".mp4"):


Loading…
Cancel
Save