mirror of https://github.com/vector-im/riot-web
AppTile: Do not test for electron platform
The method platform method is instead stubbed on all other platforms.pull/21833/head
parent
7f1d8834a2
commit
6e49926228
|
@ -136,7 +136,7 @@ export default React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_onMessage(event) {
|
_onMessage(event) {
|
||||||
if (!PlatformPeg.get().isElectron() || this.props.type !== 'jitsi') {
|
if (this.props.type !== 'jitsi') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!event.origin) {
|
if (!event.origin) {
|
||||||
|
|
Loading…
Reference in New Issue