diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-12-21 20:06:33 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-12-21 20:06:33 +0100 |
commit | 1fdce941bb27451f879a36d14e2c3dcb7742a191 (patch) | |
tree | 211745c8cdf143af60e79f82e9871df4edeea278 /src/graphql | |
parent | a785f313f93f2d3b76a63c3adbd81f8fff1271b0 (diff) |
Show possible error on app creation
Diffstat (limited to 'src/graphql')
-rw-r--r-- | src/graphql/types/notification.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphql/types/notification.rs b/src/graphql/types/notification.rs index fc71c11..21fc1aa 100644 --- a/src/graphql/types/notification.rs +++ b/src/graphql/types/notification.rs @@ -128,7 +128,7 @@ impl Notification { let row = rows[0].clone(); Ok(row.get("id")) } - Err(_) => Err(AppError::Database), + Err(e) => Err(AppError::Database(e.to_string())), } } } |