diff --git a/src/dpp/cluster.cpp b/src/dpp/cluster.cpp index 9e8e4a9163..a9a5641ab5 100644 --- a/src/dpp/cluster.cpp +++ b/src/dpp/cluster.cpp @@ -130,7 +130,7 @@ cluster::cluster(const std::string &_token, uint32_t _intents, uint32_t _shards, if (it == named_commands.end()) { co_return; // Command not found } - copy= it->second; + copy = it->second; } if (std::holds_alternative(copy)) { co_await std::get(copy)(event); @@ -148,7 +148,7 @@ cluster::cluster(const std::string &_token, uint32_t _intents, uint32_t _shards, if (it == named_commands.end()) { return; // Command not found } - copy= it->second; + copy = it->second; } copy(event); });