1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[mujs] No ampersand

This commit is contained in:
Witold Filipczyk 2024-07-12 13:19:15 +02:00
parent c4ec831978
commit c20eb2421f

View File

@ -2116,7 +2116,7 @@ mjs_element_set_property_textContent(js_State *J)
return;
}
exc = dom_node_set_text_content(el, content);
dom_string_unref(&content);
dom_string_unref(content);
js_pushundefined(J);
}