diff options
Diffstat (limited to 'libs')
-rw-r--r-- | libs/hbb_common/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hbb_common/src/config.rs b/libs/hbb_common/src/config.rs index 943917a..8bea991 100644 --- a/libs/hbb_common/src/config.rs +++ b/libs/hbb_common/src/config.rs @@ -87,7 +87,7 @@ pub const RENDEZVOUS_SERVERS: &[&str] = &[ "rs-cn.rustdesk.com", ]; -pub const RS_PUB_KEY: &'static str = match option_env!("RS_PUB_KEY") { +pub const RS_PUB_KEY: &str = match option_env!("RS_PUB_KEY") { Some(key) if !key.is_empty() => key, _ => "OeVuKk5nlHiXp+APNn0Y3pC1Iwpwn44JGqrQCsWqmBw=", }; |