mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +03:00
Code cleanup
This commit is contained in:
parent
7f049dc2a4
commit
7b04c841d6
2 changed files with 4 additions and 5 deletions
|
@ -77,10 +77,9 @@ void WebSocketSessionMan::addNotification
|
|||
params->append(std::move(eventSpec));
|
||||
dict->put("params", std::move(params));
|
||||
std::string msg = json::encode(dict.get());
|
||||
for(WebSocketSessions::const_iterator i = sessions_.begin(),
|
||||
eoi = sessions_.end(); i != eoi; ++i) {
|
||||
(*i)->addTextMessage(msg);
|
||||
(*i)->getCommand()->updateWriteCheck();
|
||||
for(auto& session : sessions_) {
|
||||
session->addTextMessage(msg);
|
||||
session->getCommand()->updateWriteCheck();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue