fix: use one variable to store `TR_KEY_rpc_authentication_required` (#6514)

This commit is contained in:
Yat Ho 2024-01-10 13:12:53 +08:00 committed by GitHub
parent 239478925f
commit 33f11f8679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -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));
}

View File

@ -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;
};