Merge pull request #112 from skil3z/master

Fix time formatting for different countries
This commit is contained in:
Christian Schabesberger 2018-09-09 13:58:34 +02:00 committed by GitHub
commit 49b72cbe5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -30,7 +30,17 @@ public class YoutubeParsingHelper {
public static long parseDurationString(String input)
throws ParsingException, NumberFormatException {
String[] splitInput = input.split(":");
String[] splitInput;
// If time separator : is not detected, try . instead
if (input.contains(":")) {
splitInput = input.split(":");
} else {
splitInput = input.split("\\.");
}
String days = "0";
String hours = "0";
String minutes = "0";