Compare commits

..

2 Commits

Author SHA1 Message Date
c18098cb8a clicks are deleted when connected links are
fixes #7
2021-04-01 09:59:07 +02:00
2bad759547 Revert "format migration"
as migrations store a hash it is not possible to change the
migrationfiles afterwards.

This reverts commit fdcc89ec1f.
2021-04-01 09:59:07 +02:00

View File

@ -64,7 +64,7 @@ impl actix_web::error::ResponseError for ServerError {
match self { match self {
Self::Argonautic => HttpResponse::InternalServerError().json("Argonautica Error"), Self::Argonautic => HttpResponse::InternalServerError().json("Argonautica Error"),
Self::Database(e) => { Self::Database(e) => {
HttpResponse::InternalServerError().json(format!("Database Error: {:?}", e)) HttpResponse::InternalServerError().json(format!("Diesel Error: {:?}", e))
} }
Self::DatabaseMigration(_) => { Self::DatabaseMigration(_) => {
unimplemented!("A migration error should never be rendered") unimplemented!("A migration error should never be rendered")