mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
For single instance, allow domain present & match
This commit is contained in:
parent
de9bf4bb47
commit
c0a4574069
1 changed files with 10 additions and 1 deletions
|
@ -508,7 +508,16 @@ module.exports = React.createClass({
|
||||||
// If there's only one instance in this protocol, use it
|
// If there's only one instance in this protocol, use it
|
||||||
// as long as it has no domain (which we assume to mean it's
|
// as long as it has no domain (which we assume to mean it's
|
||||||
// there is only one possible instance).
|
// there is only one possible instance).
|
||||||
if (the_instance.fields.domain === undefined && network_info.domain === undefined) {
|
if (
|
||||||
|
(
|
||||||
|
the_instance.fields.domain === undefined &&
|
||||||
|
network_info.domain === undefined
|
||||||
|
) ||
|
||||||
|
(
|
||||||
|
the_instance.fields.domain !== undefined &&
|
||||||
|
the_instance.fields.domain == network_info.domain
|
||||||
|
)
|
||||||
|
) {
|
||||||
matched_instance = the_instance;
|
matched_instance = the_instance;
|
||||||
}
|
}
|
||||||
} else if (network_info.domain) {
|
} else if (network_info.domain) {
|
||||||
|
|
Loading…
Reference in a new issue