pull/306/merge
David 2016-05-25 08:27:15 -03:00
rodzic 14aa6de422
commit 26c0445b83
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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";