From 6e5622a97abee1eeb4177b7c0f10359fad159ea7 Mon Sep 17 00:00:00 2001 From: fufesou Date: Sun, 19 May 2024 20:41:19 +0800 Subject: [PATCH] fix: user option, enable file copy paste (#8096) Signed-off-by: fufesou --- libs/hbb_common/src/config.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libs/hbb_common/src/config.rs b/libs/hbb_common/src/config.rs index aa9ad2f0c..dc15d4766 100644 --- a/libs/hbb_common/src/config.rs +++ b/libs/hbb_common/src/config.rs @@ -1323,11 +1323,9 @@ serde_field_bool!( default_disable_audio, "DisableAudio::default_disable_audio" ); -// The key is enable_file_transfer, but no need to keep the old name. -// This option should always be true. serde_field_bool!( EnableFileCopyPaste, - "enable_file_copy_paste", + "enable-file-copy-paste", default_enable_file_copy_paste, "EnableFileCopyPaste::default_enable_file_copy_paste" );