diff options
| -rw-r--r-- | app/lib/backend.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js index 7aa67dc84b..5f19354753 100644 --- a/app/lib/backend.js +++ b/app/lib/backend.js @@ -317,9 +317,9 @@ export class Backend { return this._ensureAuthenticated() .then(() => this._ipc.getRelaySettings()) .then((constraints) => { - log.debug('Got constraints from backend', constraints) + log.debug('Got constraints from backend', constraints); + if(constraints.normal) { - const normal = constraints.normal; // TODO: handle normal constraints log.warn('syncRelaySettings: Normal constraints are not implemented yet.'); } else if(constraints.custom_tunnel_endpoint) { |
