fix warning on windows

This commit is contained in:
John Smith 2024-04-28 17:37:47 -04:00
parent 49e6eace8e
commit c8bb574948

View File

@ -738,12 +738,11 @@ impl Settings {
} }
pub fn verify(&self) -> EyreResult<()> { pub fn verify(&self) -> EyreResult<()> {
let inner = self.inner.read();
cfg_if! { cfg_if! {
if #[cfg(windows)] { if #[cfg(windows)] {
// no ipc setup for windows // no ipc setup for windows
} else { } else {
let inner = self.inner.read();
if inner.client_api.ipc_enabled if inner.client_api.ipc_enabled
&& !Self::get_or_create_private_directory(&inner.client_api.ipc_directory, true) && !Self::get_or_create_private_directory(&inner.client_api.ipc_directory, true)
{ {