Improved duration round.
This commit is contained in:
parent
cc14f80de3
commit
cbbeb2678f
@ -158,7 +158,7 @@ public class Review
|
||||
{
|
||||
long result;
|
||||
|
||||
result = getDuration() / 60;
|
||||
result = (long) Math.ceil(getDuration() / 60.0);
|
||||
|
||||
//
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user