Fix YouTube video duration parsing

This commit is contained in:
wb9688 2020-05-30 09:31:08 +02:00
parent 98055a3c3c
commit e39147202c
1 changed files with 2 additions and 2 deletions

View File

@ -142,9 +142,9 @@ public class YoutubeParsingHelper {
default:
throw new ParsingException("Error duration string with unknown format: " + input);
}
return (((Long.parseLong(Utils.removeNonDigitCharacters(days)) * 24)
return ((((Long.parseLong(Utils.removeNonDigitCharacters(days)) * 24)
+ Long.parseLong(Utils.removeNonDigitCharacters(hours)) * 60)
+ Long.parseLong(Utils.removeNonDigitCharacters(minutes)) * 60)
+ Long.parseLong(Utils.removeNonDigitCharacters(minutes))) * 60)
+ Long.parseLong(Utils.removeNonDigitCharacters(seconds));
}