dev #19
@ -86,8 +86,10 @@
|
||||
},
|
||||
"caption": {
|
||||
"enabled": false,
|
||||
"text": "sample text",
|
||||
"link": null
|
||||
"link": null,
|
||||
"text": [
|
||||
"sample text"
|
||||
]
|
||||
},
|
||||
"submission": {
|
||||
"timeout": 30,
|
||||
|
@ -1,5 +1,6 @@
|
||||
from datetime import datetime
|
||||
from os import makedirs, path
|
||||
from random import choice
|
||||
from shutil import rmtree
|
||||
from traceback import format_exc
|
||||
from uuid import uuid4
|
||||
@ -129,9 +130,9 @@ async def send_content(app: PosterClient) -> None:
|
||||
|
||||
if configGet("enabled", "caption"):
|
||||
if configGet("link", "caption") != None:
|
||||
caption = f"{caption}[{configGet('text', 'caption')}]({configGet('link', 'caption')})"
|
||||
caption = f"{caption}[{choice(configGet('text', 'caption'))}]({configGet('link', 'caption')})"
|
||||
else:
|
||||
caption = f"{caption}{configGet('text', 'caption')}"
|
||||
caption = f"{caption}{choice(configGet('text', 'caption'))}"
|
||||
else:
|
||||
caption = caption
|
||||
|
||||
|
Reference in New Issue
Block a user