1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Improve readability.

This commit is contained in:
Richard Lewis
2017-12-01 16:35:55 +00:00
parent 81f7f805fa
commit 9dabf19d1b

View File

@ -232,17 +232,13 @@ function onMessage(event) {
* @return {boolean} True if trusted * @return {boolean} True if trusted
*/ */
function trustedEndpoint(origin) { function trustedEndpoint(origin) {
if (origin) { if (!origin) {
if (messageEndpoints.filter(function(endpoint) { return false;
if (endpoint.endpointUrl == origin) {
return true;
}
}).length > 0) {
return true;
}
} }
return false; return messageEndpoints.some((endpoint) => {
return endpoint.endpointUrl === origin;
});
} }
/** /**