Skip to content
Snippets Groups Projects
Commit 7b5bafdf authored by Philipp Schafft's avatar Philipp Schafft :lion_face:
Browse files

Merge branch fix for <metadata> of relays.

parents 857264ac 7e9e298e
No related branches found
No related tags found
No related merge requests found
......@@ -864,8 +864,10 @@ static xmlNodePtr _dump_stats_to_doc (xmlNodePtr root, const char *show_mount, i
metadata = xmlNewTextChild(xmlnode, NULL, XMLSTR("metadata"), NULL);
avl_tree_rlock(global.source_tree);
source_real = source_find_mount_raw(source->source);
for (i = 0; i < source_real->format->vc.comments; i++)
__add_metadata(metadata, source_real->format->vc.user_comments[i]);
if (source_real->format) {
for (i = 0; i < source_real->format->vc.comments; i++)
__add_metadata(metadata, source_real->format->vc.user_comments[i]);
}
avl_tree_unlock(global.source_tree);
authentication = xmlNewTextChild(xmlnode, NULL, XMLSTR("authentication"), NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment