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 8ff8453 commit acb931bCopy full SHA for acb931b
src/reader.rs
@@ -59,12 +59,12 @@ impl<'a> Reader<'a> {
59
}
60
61
// Check whether the next set of bytes are related to the Cubase version.
62
- if metadata.is_none() {
63
- if let Some((found_metadata, updated_index)) = self.search_metadata(index)? {
64
- metadata = Some(found_metadata);
65
- index = updated_index;
66
- continue;
67
- }
+ if metadata.is_none()
+ && let Some((found_metadata, updated_index)) = self.search_metadata(index)?
+ {
+ metadata = Some(found_metadata);
+ index = updated_index;
+ continue;
68
69
70
// Check whether the next set of bytes relate to a plugin.
0 commit comments