Fix minor things that broke in last commit

This commit is contained in:
2023-01-23 00:18:48 +01:00
parent 160cfdc401
commit 5a6482b583
6 changed files with 40 additions and 22 deletions

View File

@ -9,12 +9,10 @@ os.makedirs(data_dir, exist_ok=True)
# TODO: Add default things to the database and make the edible.
default_custom_message: str = "{{entry_title}}\n{{entry_link}}"
default_custom_embed = {
default_custom_embed: dict[str, str] = {
"title": "{{entry_title}}",
"description": "{{entry_content}}",
"url": "{{entry_link}}",
"image": "{{entry_image}}",
"color": 0x008080,
"description": "{{entry_text}}",
"image_url": "{{image_1}}",
}