Skip to content

Commit

Permalink
Merge pull request #568 from YXL76/patch-1
Browse files Browse the repository at this point in the history
fix: no variant found for `source::SeekError`
  • Loading branch information
dvdsk authored Apr 13, 2024
2 parents 818f557 + 85c35c3 commit cefb123
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/source/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,9 @@ impl SeekError {
pub fn source_intact(&self) -> bool {
match self {
SeekError::NotSupported { .. } => true,
#[cfg(feature = "symphonia")]
SeekError::SymphoniaDecoder(_) => false,
#[cfg(feature = "wav")]
SeekError::HoundDecoder(_) => false,
SeekError::Other(_) => false,
}
Expand Down

0 comments on commit cefb123

Please sign in to comment.