Merge branch 'master' of github.com:theScrabi/NewPipe

This commit is contained in:
Christian Schabesberger 2016-05-25 22:19:47 +02:00
commit 466ba93750
2 changed files with 28 additions and 3 deletions

View file

@ -134,9 +134,9 @@ public class VideoInfoItemViewCreator {
if(hours > 0 || !output.isEmpty()) {
if(hours > 0) {
if(hours >= 10 || output.isEmpty()) {
output += Integer.toString(minutes);
output += Integer.toString(hours);
} else {
output += "0" + Integer.toString(minutes);
output += "0" + Integer.toString(hours);
}
} else {
output += "00";