This commit closes #11

This commit is contained in:
Profitroll 2023-03-15 21:58:14 +01:00
parent ba5a0f116c
commit be8f0262d0
2 changed files with 7 additions and 4 deletions

View File

@ -86,8 +86,10 @@
},
"caption": {
"enabled": false,
"text": "sample text",
"link": null
"link": null,
"text": [
"sample text"
]
},
"submission": {
"timeout": 30,

View File

@ -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