mirror of
https://github.com/znc/znc.git
synced 2026-07-03 08:21:57 +02:00
Revert "Q module: Don't enable the UseCloakedHost option by default."
This reverts commit a7e8775efe.
Existing setting for existing users (who didn't do SetNV) should not change
Thanks to fred for reporting it
Reopen #525
This commit is contained in:
+1
-1
@@ -40,7 +40,7 @@ public:
|
||||
}
|
||||
|
||||
CString sTmp;
|
||||
m_bUseCloakedHost = (sTmp = GetNV("UseCloakedHost")).empty() ? false : sTmp.ToBool();
|
||||
m_bUseCloakedHost = (sTmp = GetNV("UseCloakedHost")).empty() ? true : sTmp.ToBool();
|
||||
m_bUseChallenge = (sTmp = GetNV("UseChallenge")).empty() ? true : sTmp.ToBool();
|
||||
m_bRequestPerms = GetNV("RequestPerms").ToBool();
|
||||
m_bJoinOnInvite = (sTmp = GetNV("JoinOnInvite")).empty() ? true : sTmp.ToBool();
|
||||
|
||||
Reference in New Issue
Block a user