From 6d6d836d2dbe7b37bc46311d0535c14a25264ac0 Mon Sep 17 00:00:00 2001 From: Lzzzt Date: Mon, 3 Mar 2025 17:45:12 +1100 Subject: make the option effect raw mode Signed-off-by: Lzzzt --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index 03d3f4b..9a470ef 100644 --- a/src/config.rs +++ b/src/config.rs @@ -159,7 +159,7 @@ pub struct MiniserveConfig { pub webdav_enabled: bool, /// If enabled, will show in exact byte size of the file - pub show_size_in_byte: bool, + pub show_exact_bytes: bool, /// If set, use provided rustls config for TLS #[cfg(feature = "tls")] @@ -323,7 +323,7 @@ impl MiniserveConfig { webdav_enabled: args.enable_webdav, tls_rustls_config: tls_rustls_server_config, compress_response: args.compress_response, - show_size_in_byte: args.show_size_in_byte, + show_exact_bytes: args.show_exact_bytes, }) } } -- cgit v1.2.3