Correctly highlight options on mobile

This commit is contained in:
jude
2023-09-17 18:33:01 +01:00
parent ec63c942d6
commit 6f1ef206df
4 changed files with 32 additions and 8 deletions

View File

@ -124,6 +124,7 @@ pub struct ReminderCreate {
attachment: Option<Vec<u8>>,
attachment_name: Option<String>,
avatar: Option<String>,
#[serde(with = "string")]
channel: u64,
content: String,
embed_author: String,
@ -565,7 +566,9 @@ pub async fn create_reminder(
tts,
username,
`utc_time`
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
) VALUES (?, ?, ?, ?,
(SELECT id FROM guilds WHERE guild = ?), ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
?, ?, ?, ?, ?)",
new_uid,
attachment_data,
reminder.attachment_name,