-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/no video #5
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor change, otherwise lgtm
@@ -49,7 +49,7 @@ fn main() -> Result<()> { | |||
}) | |||
.filter(Some("fuse_mt"), LevelFilter::Warn) | |||
.filter(Some("fuse"), LevelFilter::Warn) | |||
.filter(None, LevelFilter::Warn) | |||
.filter(None, LevelFilter::Debug) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should stay at ::Warn
on master
let coder = encoding::label::encoding_from_whatwg_label(whtwg_label); | ||
let txt = match coder { | ||
Some(c) => match c.decode(&reader, encoding::DecoderTrap::Ignore) { | ||
Ok(x) => x, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While looking at my changes to ultrastar-txt I noticed that this does not work for files encoded with utf8 that sport a BOM at the beginning.
See here for how I currently implement that check: man0lis/ultrastar-txt@master...e83406f
Depends on #4