Fix minor things that broke in last commit

This commit is contained in:
Joakim Hellsén 2023-01-23 00:18:48 +01:00
commit 5a6482b583
No known key found for this signature in database
GPG key ID: C889E6DC5EDBB36D
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}}",
}