From 26c0445b83d38e522394162e45cbece0e85f9e98 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 25 May 2016 08:27:15 -0300 Subject: [PATCH] Fix for #273 --- .../java/org/schabi/newpipe/VideoInfoItemViewCreator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/VideoInfoItemViewCreator.java b/app/src/main/java/org/schabi/newpipe/VideoInfoItemViewCreator.java index 369f5eea9..4b7c3c332 100644 --- a/app/src/main/java/org/schabi/newpipe/VideoInfoItemViewCreator.java +++ b/app/src/main/java/org/schabi/newpipe/VideoInfoItemViewCreator.java @@ -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";