Change message test

This commit is contained in:
Logan 2024-09-04 17:36:02 -05:00
parent 0f08e6eab2
commit 00db3be241

View file

@ -110,7 +110,7 @@ rust_cgi::cgi_main!(|req: cgi::http::Request<Vec<u8>>| -> rust_cgi::Response {
let image = req.into_body();
let gif = match futures::executor::block_on(make_gif(&image, qd)) {
Ok(gif) => gif,
Err(_) => return cgi::text_response(500, "Failed to process image"),
Err(_) => return cgi::text_response(500, "Failed to process image!"),
};
rust_cgi::binary_response(200, CONTENT_TYPE, gif)
});