You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-05 23:10:41 +03:00
Replace document.origin with window.location.origin
document.origin is not a thing on firefox
This commit is contained in:
@@ -337,7 +337,7 @@ module.exports = React.createClass({
|
|||||||
if (this.context.appConfig && this.context.appConfig.cross_origin_renderer_url) {
|
if (this.context.appConfig && this.context.appConfig.cross_origin_renderer_url) {
|
||||||
renderer_url = this.context.appConfig.cross_origin_renderer_url;
|
renderer_url = this.context.appConfig.cross_origin_renderer_url;
|
||||||
}
|
}
|
||||||
renderer_url += "?origin=" + encodeURIComponent(document.origin);
|
renderer_url += "?origin=" + encodeURIComponent(window.location.origin);
|
||||||
return (
|
return (
|
||||||
<span className="mx_MFileBody">
|
<span className="mx_MFileBody">
|
||||||
<div className="mx_MFileBody_download">
|
<div className="mx_MFileBody_download">
|
||||||
|
|||||||
Reference in New Issue
Block a user