|
@@ -1,6 +1,6 @@
|
1
|
1
|
const logger = require("jitsi-meet-logger").getLogger(__filename);
|
2
|
2
|
|
3
|
|
-import { redirect } from '../util/helpers';
|
|
3
|
+import { replace } from '../util/helpers';
|
4
|
4
|
|
5
|
5
|
/**
|
6
|
6
|
* The modules stores information about the URL used to start the conference and
|
|
@@ -68,6 +68,6 @@ export default class ConferenceUrl {
|
68
|
68
|
*/
|
69
|
69
|
reload() {
|
70
|
70
|
logger.info("Reloading the conference using URL: " + this.originalURL);
|
71
|
|
- redirect(this.originalURL);
|
|
71
|
+ replace(this.originalURL);
|
72
|
72
|
}
|
73
|
73
|
}
|