forked from Qortal/qortal
Ignore "qdnAuthBypassEnabled" setting when in gateway mode.
This commit is contained in:
parent
88f8041b05
commit
7392082875
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user