mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
modules/media/media: Fix condition variable.
modules/media/media: Minor cleanup.
This commit is contained in:
parent
b8dfa9ccee
commit
f48182404f
1 changed files with 6 additions and 6 deletions
|
@ -188,11 +188,11 @@ try
|
|||
|
||||
if(!iit.second)
|
||||
{
|
||||
do
|
||||
downloading_dock.wait([&room_id]
|
||||
{
|
||||
downloading_dock.wait();
|
||||
}
|
||||
while(downloading.count(room_id));
|
||||
return !downloading.count(room_id);
|
||||
});
|
||||
|
||||
return room_id;
|
||||
}
|
||||
|
||||
|
@ -420,9 +420,9 @@ read_each_block(const m::room &room,
|
|||
if(at<"type"_>(event) != "ircd.file.block")
|
||||
continue;
|
||||
|
||||
const auto &hash
|
||||
const json::string &hash
|
||||
{
|
||||
unquote(at<"content"_>(event).at("hash"))
|
||||
at<"content"_>(event).at("hash")
|
||||
};
|
||||
|
||||
const auto &blksz
|
||||
|
|
Loading…
Reference in a new issue