We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98b1db5 commit 2888930Copy full SHA for 2888930
playback/src/decoder/symphonia_decoder.rs
@@ -233,11 +233,12 @@ impl SymphoniaDecoder {
233
234
// If we can't get metadata from the container, fall back to other tags found by probing.
235
// Note that this is only relevant for local files.
236
- if metadata.current().is_none()
237
- && let Some(ref mut probe_metadata) = self.probed_metadata
238
- && let Some(inner_probe_metadata) = probe_metadata.get()
239
- {
240
- metadata = inner_probe_metadata;
+ if metadata.current().is_none() {
+ if let Some(ref mut probe_metadata) = self.probed_metadata {
+ if let Some(inner_probe_metadata) = probe_metadata.get() {
+ metadata = inner_probe_metadata;
+ }
241
242
}
243
244
// Advance to the latest metadata revision.
0 commit comments