We shouldn't use the source of images as their text in text/plain renderings

print-window-tiddler
Jeremy Ruston 2012-01-17 15:21:56 +00:00
rodzic 8cfff2c2fa
commit a6de27b348
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -40,7 +40,7 @@ exports.macro = {
}); });
} }
} else if (type === "text/plain") { } else if (type === "text/plain") {
return params.text ? params.text : params.src; return params.text ? params.text : "";
} }
} }
}; };