diff --git a/esphome/components/text/text_traits.h b/esphome/components/text/text_traits.h index 54b3873a1b..208bba558a 100644 --- a/esphome/components/text/text_traits.h +++ b/esphome/components/text/text_traits.h @@ -22,7 +22,7 @@ class TextTraits { int get_max_length() const { return this->max_length_; } // Set/get the pattern. - void set_pattern(const std::string &pattern) { this->pattern_ = std::move(pattern); } + void set_pattern(const std::string &pattern) { this->pattern_ = pattern; } std::string get_pattern() const { return this->pattern_; } StringRef get_pattern_ref() const { return StringRef(this->pattern_); } diff --git a/esphome/components/web_server_base/web_server_base.h b/esphome/components/web_server_base/web_server_base.h index d3bcfb2c3c..e5c9bdce27 100644 --- a/esphome/components/web_server_base/web_server_base.h +++ b/esphome/components/web_server_base/web_server_base.h @@ -131,8 +131,8 @@ class WebServerBase : public Component { float get_setup_priority() const override; #ifdef USE_WEBSERVER_AUTH - void set_auth_username(const std::string &auth_username) { credentials_.username = std::move(auth_username); } - void set_auth_password(const std::string &auth_password) { credentials_.password = std::move(auth_password); } + void set_auth_username(const std::string &auth_username) { credentials_.username = auth_username; } + void set_auth_password(const std::string &auth_password) { credentials_.password = auth_password; } #endif void add_handler(AsyncWebHandler *handler);