Suppress unused field warning

Max Brunsfeld created

Change summary

crates/live_kit_client/src/prod.rs | 1 +
1 file changed, 1 insertion(+)

Detailed changes

crates/live_kit_client/src/prod.rs 🔗

@@ -868,6 +868,7 @@ impl Drop for RemoteAudioTrack {
         // the crash in the `livekit.multicast` thread.
         //
         // unsafe { CFRelease(self.native_track.0) }
+        let _ = self.native_track;
     }
 }