mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
Make clippy happy
This commit is contained in:
parent
a95f4dfe0d
commit
2e0cded871
2 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@ use dioxus_desktop::wry::http;
|
|||
use dioxus_desktop::wry::http::Response;
|
||||
use dioxus_desktop::{use_asset_handler, AssetRequest};
|
||||
use http::{header::*, response::Builder as ResponseBuilder, status::StatusCode};
|
||||
use std::borrow::Cow;
|
||||
use std::{io::SeekFrom, path::PathBuf};
|
||||
use tokio::io::AsyncReadExt;
|
||||
use tokio::io::AsyncSeekExt;
|
||||
|
|
|
@ -72,7 +72,7 @@ impl WebviewInstance {
|
|||
|
||||
// Otherwise, try to serve an asset, either from the user or the filesystem
|
||||
match index_bytes {
|
||||
Some(body) => return responder.respond(body),
|
||||
Some(body) => responder.respond(body),
|
||||
None => {
|
||||
// we need to do this in the context of the dioxus runtime since the user gave us these closures
|
||||
protocol::desktop_handler(
|
||||
|
|
Loading…
Reference in a new issue