Fix for #273
This commit is contained in:
parent
14aa6de422
commit
26c0445b83
|
@ -134,9 +134,9 @@ public class VideoInfoItemViewCreator {
|
||||||
if(hours > 0 || !output.isEmpty()) {
|
if(hours > 0 || !output.isEmpty()) {
|
||||||
if(hours > 0) {
|
if(hours > 0) {
|
||||||
if(hours >= 10 || output.isEmpty()) {
|
if(hours >= 10 || output.isEmpty()) {
|
||||||
output += Integer.toString(minutes);
|
output += Integer.toString(hours);
|
||||||
} else {
|
} else {
|
||||||
output += "0" + Integer.toString(minutes);
|
output += "0" + Integer.toString(hours);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
output += "00";
|
output += "00";
|
||||||
|
|
Loading…
Reference in New Issue