diff --git a/syncplay/client.py b/syncplay/client.py index 6fde299..d561096 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -446,6 +446,7 @@ class UiManager(object): return self.__ui.promptFor(prompt) def formatTime(self, value): + value = round(value) weeks = value // 604800 days = (value % 604800) // 86400 hours = (value % 86400) // 3600