diff options
Diffstat (limited to 'twittperator.js')
-rw-r--r-- | twittperator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js index 215750f..8438d11 100644 --- a/twittperator.js +++ b/twittperator.js @@ -2043,7 +2043,7 @@ let INFO = xml` '</table>'; window.Services.console.logStringMessage(html); - liberator.echo(new TemplateXML(html), true); + liberator.echo(new template.maybeXML(html), true); }, // }}} showTwitterMentions: function(arg) { // {{{ tw.jsonGet("statuses/mentions_timeline", null, function(res) { @@ -2355,7 +2355,7 @@ let INFO = xml` return; let id = m[0]; history.filter(function(st) st.id === id).map(dtdd).forEach(function(v) { - liberator.echo(new TemplateXML(v)); + liberator.echo(new template.maybeXML(v)); }); }, timelineCompleter: true, |