This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 37e7bfc Restore hash format
37e7bfc is described below
commit 37e7bfc3cb820a4eaf32ee87302008382f7e1c86
Author: Sebb <[email protected]>
AuthorDate: Fri Sep 10 23:06:09 2021 +0100
Restore hash format
---
www/roster/public_mlist_info.rb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/www/roster/public_mlist_info.rb b/www/roster/public_mlist_info.rb
index 229dce1..44507b1 100644
--- a/www/roster/public_mlist_info.rb
+++ b/www/roster/public_mlist_info.rb
@@ -45,6 +45,8 @@ PonyAPI.get_pony_lists(nil,nil,true).each do |dom, lists|
end
end
-info[:list_data] = data.sort # ensure only valid changes are reported
+info[:list_count] = data.size
+# TODO probably not worth summarising domains
+info[:lists] = data.sort.to_h # sort to ensure only valid changes are reported
public_json_output(info)