1
0
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:
David Baker
2018-04-26 10:43:52 +01:00
parent e26c3f3dc9
commit 53528f338a

View File

@@ -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">