[HD] Make new API default

This commit is contained in:
AnimeDL 2024-03-24 14:24:08 -07:00
parent ed02017bca
commit eb2e9c2425
2 changed files with 1 additions and 2 deletions

View file

@ -241,7 +241,7 @@ const args: TAppArg<boolean|number|string|unknown[]>[] = [
usage: '',
choices: ['old', 'new'],
default: {
default: 'old'
default: 'new'
}
},
{

View file

@ -286,7 +286,6 @@ function convert(css: Css, vtt: Vtt[]) {
* This checks if a subtitle should be multi-line, and if it is, pops the just inserted
* subtitle and the previous subtitle, and merges them into a single subtitle.
*/
console.debug(previousLine?.text);
if (
previousLine?.start == x.start &&
previousLine.type == x.type &&