Mercurial > prosody-modules
comparison mod_http_admin_api/mod_http_admin_api.lua @ 4925:55e3ca6bdfd1
mod_http_admin_api: Fix client -> client_id (the actual field name)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 11 Apr 2022 20:31:43 +0100 |
parents | 883ad8b0a7c0 |
children | 404a22d52376 |
comparison
equal
deleted
inserted
replaced
4924:df3d521e3c39 | 4925:55e3ca6bdfd1 |
---|---|
328 push_registrations[identifier] = { | 328 push_registrations[identifier] = { |
329 since = push_info.timestamp; | 329 since = push_info.timestamp; |
330 service = push_info.jid; | 330 service = push_info.jid; |
331 node = push_info.node; | 331 node = push_info.node; |
332 error_count = push_errors[identifier] or 0; | 332 error_count = push_errors[identifier] or 0; |
333 client = push_info.client; | 333 client_id = push_info.client_id; |
334 }; | 334 }; |
335 end | 335 end |
336 end | 336 end |
337 debug_info.push_registrations = push_registrations; | 337 debug_info.push_registrations = push_registrations; |
338 end | 338 end |