mirror of
https://github.com/redlib-org/redlib.git
synced 2025-06-08 07:37:45 +00:00
Fix gallery unwrapping
This commit is contained in:
parent
7edca18f8d
commit
ac5ef89dff
2 changed files with 10 additions and 8 deletions
|
@ -31,7 +31,9 @@ async fn pwa_logo() -> HttpResponse {
|
|||
|
||||
// Required for iOS App Icons
|
||||
async fn iphone_logo() -> HttpResponse {
|
||||
HttpResponse::Ok().content_type("image/png").body(include_bytes!("../static/touch-icon-iphone.png").as_ref())
|
||||
HttpResponse::Ok()
|
||||
.content_type("image/png")
|
||||
.body(include_bytes!("../static/touch-icon-iphone.png").as_ref())
|
||||
}
|
||||
|
||||
async fn robots() -> HttpResponse {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue