[READ-ONLY] Mirror of https://github.com/probablykasper/redlux. AAC decoder for MPEG-4 and AAC files, with rodio support
aac audio decoder mp4 package
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix `fmt::Display` for errors

Kasper (Feb 2, 2021, 4:42 AM +0100) 2a22e5f1 83dbd4db

+1 -1
+1 -1
src/lib.rs
··· 41 41 42 42 impl fmt::Display for Error { 43 43 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { 44 - write!(f, "Oh no, something bad went down") 44 + write!(f, "{}", self.message()) 45 45 } 46 46 } 47 47