Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslan-ilesik committed Oct 7, 2024
1 parent 979eb0d commit 8f62576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dpp/cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<co_slashcommand_handler_t>(copy)) {
co_await std::get<co_slashcommand_handler_t>(copy)(event);
Expand All @@ -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);
});
Expand Down

0 comments on commit 8f62576

Please sign in to comment.