Fix attachment decoding

This commit is contained in:
jude 2023-10-19 20:10:40 +01:00
parent ca13fd4fa7
commit 9db0fa2513
2 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "reminder_web"
version = "0.1.1"
version = "0.1.2"
authors = ["jellywx <judesouthworth@pm.me>"]
edition = "2018"

View File

@ -468,8 +468,6 @@ pub(crate) async fn create_reminder(
}
}
// base64 decode error dropped here
let attachment_data = reminder.attachment.as_ref().map(|s| base64::decode(s).ok()).flatten();
let name = if reminder.name.is_empty() { name_default() } else { reminder.name.clone() };
let username = if reminder.username.as_ref().map(|s| s.is_empty()).unwrap_or(true) {
None
@ -510,7 +508,7 @@ pub(crate) async fn create_reminder(
`utc_time`
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
new_uid,
attachment_data,
reminder.attachment,
reminder.attachment_name,
channel,
reminder.avatar,