Software /
code /
prosody-modules
Comparison
mod_client_management/mod_client_management.lua @ 5373:93d6ed7dc779
mod_client_management: Fix changed column cell "key"
Forgot to change in b2d51c6ae89a
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 26 Apr 2023 12:12:34 +0200 |
parent | 5372:2d8076577e14 |
child | 5374:d9397d6a5513 |
comparison
equal
deleted
inserted
replaced
5372:2d8076577e14 | 5373:93d6ed7dc779 |
---|---|
418 end | 418 end |
419 | 419 |
420 local colspec = { | 420 local colspec = { |
421 { | 421 { |
422 title = "Software"; | 422 title = "Software"; |
423 key = "software"; | 423 key = "user_agent"; |
424 width = "1p"; | 424 width = "1p"; |
425 mapper = function(user_agent) | 425 mapper = function(user_agent) |
426 return user_agent and user_agent.software; | 426 return user_agent and user_agent.software; |
427 end; | 427 end; |
428 }; | 428 }; |