mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
1379f64068
@ -557,8 +557,16 @@ const onMessage = function(event) {
|
|||||||
//
|
//
|
||||||
// All strings start with the empty string, so for sanity return if the length
|
// All strings start with the empty string, so for sanity return if the length
|
||||||
// of the event origin is 0.
|
// of the event origin is 0.
|
||||||
|
//
|
||||||
|
// TODO -- Scalar postMessage API should be namespaced with event.data.api field
|
||||||
|
// Fix following "if" statement to respond only to specific API messages.
|
||||||
const url = SdkConfig.get().integrations_ui_url;
|
const url = SdkConfig.get().integrations_ui_url;
|
||||||
if (event.origin.length === 0 || !url.startsWith(event.origin) || !event.data.action) {
|
if (
|
||||||
|
event.origin.length === 0 ||
|
||||||
|
!url.startsWith(event.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
|
return; // don't log this - debugging APIs like to spam postMessage which floods the log otherwise
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user