From 8e88482451f4efca7fd1f653d7b02df58fec3d6f Mon Sep 17 00:00:00 2001 From: Jonathan Gilbert Date: Sat, 1 Nov 2025 08:29:01 -0500 Subject: [PATCH] Updated default_options in config.rs to capture the return value of [].map, eliminating a build-time warning. --- src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.rs b/src/config.rs index dd9ed3f..6b7386a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1582,6 +1582,7 @@ impl PeerConfig { fn default_options() -> HashMap { let mut mp: HashMap = Default::default(); + let _ = [ keys::OPTION_CODEC_PREFERENCE, keys::OPTION_CUSTOM_FPS,