mirror of
https://codeberg.org/metamuffin/abrechenbarkeit.git
synced 2024-12-27 15:44:34 +00:00
more stable sort users
This commit is contained in:
parent
158b934a7a
commit
dc4a5d1fe1
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ local function get_active_users()
|
|||
table.insert(users, user)
|
||||
end
|
||||
|
||||
table.sort(users, function(a, b) return a.time > b.time end)
|
||||
table.sort(users, function(a, b) return ((a.time == b.time) and a.name > b.name) or (a.time > b.time) end)
|
||||
return users
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue