mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-10-28 05:47:39 +00:00
Merge branch 'master' of github.com:theScrabi/NewPipe
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user