Skip to content

Commit

Permalink
Boss/Mod/FundsMover/Runner.cpp: Always finish.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZmnSCPxj committed Dec 4, 2020
1 parent 91f8f0b commit 46531fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Boss/Mod/FundsMover/Runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ Ev::Io<void> Runner::gather_info() {
, std::string(source).c_str()
, std::string(destination).c_str()
);
return attempt(amount) + finish();
return attempt(amount);
}).then([this]() {
return finish();
});
}

Expand Down

0 comments on commit 46531fc

Please sign in to comment.