fix: use one variable to store `TR_KEY_rpc_authentication_required` (#6514)
This commit is contained in:
parent
239478925f
commit
33f11f8679
|
@ -811,7 +811,7 @@ void tr_rpc_server::set_password(std::string_view password) noexcept
|
|||
|
||||
void tr_rpc_server::set_password_enabled(bool enabled)
|
||||
{
|
||||
is_password_enabled_ = enabled;
|
||||
authentication_required_ = enabled;
|
||||
tr_logAddDebug(fmt::format("setting password-enabled to '{}'", enabled));
|
||||
}
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ public:
|
|||
|
||||
[[nodiscard]] constexpr auto is_password_enabled() const noexcept
|
||||
{
|
||||
return is_password_enabled_;
|
||||
return authentication_required_;
|
||||
}
|
||||
|
||||
void set_password_enabled(bool enabled);
|
||||
|
@ -163,6 +163,4 @@ public:
|
|||
|
||||
size_t login_attempts_ = 0U;
|
||||
int start_retry_counter = 0;
|
||||
|
||||
bool is_password_enabled_ = false;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue