diff options
Diffstat (limited to 'templates/lobby_html.jinja')
-rw-r--r-- | templates/lobby_html.jinja | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/lobby_html.jinja b/templates/lobby_html.jinja index ae0000e..468a2fa 100644 --- a/templates/lobby_html.jinja +++ b/templates/lobby_html.jinja @@ -78,7 +78,7 @@ <span class="info">(non-steam)</span> {% else %} {% if profile['personastate'] == 0 %} - <span class="{{ state }}">Offline since {{ display_time(current_time - profile['lastlogoff']) }}</span> + <span class="{{ state }}">Offline since {{ (current_time - profile['lastlogoff']) | display_time }}</span> {% else %} <span class="{{ state }}">{{ states[profile['personastate']] }}</span> {% endif %} |