You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-31 13:44:28 +03:00
Don't do URL previews for matrix.to
This commit is contained in:
@ -162,6 +162,12 @@ module.exports = React.createClass({
|
|||||||
else {
|
else {
|
||||||
var url = node.getAttribute("href");
|
var url = node.getAttribute("href");
|
||||||
var host = url.match(/^https?:\/\/(.*?)(\/|$)/)[1];
|
var host = url.match(/^https?:\/\/(.*?)(\/|$)/)[1];
|
||||||
|
|
||||||
|
// never preview matrix.to links (if anything we should give a smart
|
||||||
|
// preview of the room/user they point to: nobody needs to be reminded
|
||||||
|
// what the matrix.to site looks like).
|
||||||
|
if (host == 'matrix.to') return false;
|
||||||
|
|
||||||
if (node.textContent.toLowerCase().trim().startsWith(host.toLowerCase())) {
|
if (node.textContent.toLowerCase().trim().startsWith(host.toLowerCase())) {
|
||||||
// it's a "foo.pl" style link
|
// it's a "foo.pl" style link
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user