mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Remove logging of origin mismatch
This commit is contained in:
parent
d57a0dec64
commit
60adbdc2eb
@ -557,20 +557,18 @@ const onMessage = function(event) {
|
||||
try {
|
||||
eventOriginUrl = new URL(event.origin);
|
||||
} catch (e) {
|
||||
console.warn(`Message from IM with unparsable origin ${event.origin} ignored`);
|
||||
return;
|
||||
}
|
||||
if (configUrl.origin !== eventOriginUrl.origin) {
|
||||
console.warn(`Message from IM with invalid origin ${event.origin} ignored`);
|
||||
return;
|
||||
}
|
||||
// TODO -- Scalar postMessage API should be namespaced with event.data.api field
|
||||
// Fix following "if" statement to respond only to specific API messages.
|
||||
if (
|
||||
configUrl.origin !== eventOriginUrl.origin ||
|
||||
!event.data.action ||
|
||||
event.data.api // Ignore messages with specific API set
|
||||
) {
|
||||
return; // don't log this - debugging APIs like to spam postMessage which floods the log otherwise
|
||||
// don't log this - debugging APIs and browser add-ons like to spam
|
||||
// postMessage which floods the log otherwise
|
||||
return;
|
||||
}
|
||||
|
||||
if (event.data.action === "close_scalar") {
|
||||
|
Loading…
Reference in New Issue
Block a user