forked from matrix/element-web
Use more variables
This commit is contained in:
parent
761600f325
commit
b71b1b5535
|
@ -64,11 +64,12 @@ module.exports = React.createClass({
|
||||||
this.nativePatterns = {};
|
this.nativePatterns = {};
|
||||||
if (this.props.config.networks) {
|
if (this.props.config.networks) {
|
||||||
for (const network of Object.keys(this.props.config.networks)) {
|
for (const network of Object.keys(this.props.config.networks)) {
|
||||||
if (this.props.config.networks[network].portalRoomPattern) {
|
const network_info = this.props.config.networks[network];
|
||||||
this.portalRoomPatterns[network] = new RegExp(this.props.config.networks[network].portalRoomPattern);
|
if (network_info.portalRoomPattern) {
|
||||||
|
this.portalRoomPatterns[network] = new RegExp(network_info.portalRoomPattern);
|
||||||
}
|
}
|
||||||
if (this.props.config.networks[network].nativePattern) {
|
if (network_info.nativePattern) {
|
||||||
this.nativePatterns[network] = new RegExp(this.props.config.networks[network].nativePattern);
|
this.nativePatterns[network] = new RegExp(network_info.nativePattern);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue