Ignore "qdnAuthBypassEnabled" setting when in gateway mode.

This commit is contained in:
CalDescent 2023-03-31 09:48:25 +01:00
parent 88f8041b05
commit 7392082875

View File

@ -1006,6 +1006,10 @@ public class Settings {
}
public boolean isQDNAuthBypassEnabled() {
if (this.gatewayEnabled) {
// We must always bypass QDN authentication in gateway mode, in order for it to function properly
return true;
}
return this.qdnAuthBypassEnabled;
}
}