Skip to content

Commit

Permalink
Fix generating default reminder embed settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Rivixer committed Feb 14, 2024
1 parent 749e13c commit 7ec3507
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions sggwbot/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -957,27 +957,27 @@ def _get_default_reminder_embed_data(self) -> dict[str, Any]:
"default": 16763432,
"use_role_color_if_single_was_pinged": True,
},
},
"fields": {
"datetime": {
"name": "When?",
"value": "{{DATETIME:f}}",
"inline": True,
},
"datetime_all_day": {
"name": "When?",
"value": "{{DATETIME:D}}",
"inline": True,
},
"location": {
"name": "Where?",
"value": "{{LOCATION}}",
"inline": True,
},
"more_info": {
"name": "More information:",
"value": "{{MORE_INFO}}",
"inline": False,
"fields": {
"datetime": {
"name": "When?",
"value": "{{DATETIME:f}}",
"inline": True,
},
"datetime_all_day": {
"name": "When?",
"value": "{{DATETIME:D}}",
"inline": True,
},
"location": {
"name": "Where?",
"value": "{{LOCATION}}",
"inline": True,
},
"more_info": {
"name": "More information:",
"value": "{{MORE_INFO}}",
"inline": False,
},
},
},
}
Expand Down

0 comments on commit 7ec3507

Please sign in to comment.