diff options
author | Nikola Knezevic <nikola@knezevic.ch> | 2020-04-06 23:08:39 +0200 |
---|---|---|
committer | Nikola Knezevic <nikola@knezevic.ch> | 2020-04-08 22:26:57 +0200 |
commit | a0c5931208042da39bb6a5e80a4b27cf50f665d6 (patch) | |
tree | 3b2afde923a17cf83aeebbe12956a8314e932e05 /src/libutil/logging.cc | |
parent | c4c1ae0a00e8dd3258af58c15b664828b592133e (diff) |
actDownload -> actDataTransfer
Diffstat (limited to 'src/libutil/logging.cc')
-rw-r--r-- | src/libutil/logging.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc index fa5c84a27..001a3fb28 100644 --- a/src/libutil/logging.cc +++ b/src/libutil/logging.cc @@ -198,7 +198,7 @@ bool handleJSONLogMessage(const std::string & msg, if (action == "start") { auto type = (ActivityType) json["type"]; - if (trusted || type == actDownload) + if (trusted || type == actDataTransfer) activities.emplace(std::piecewise_construct, std::forward_as_tuple(json["id"]), std::forward_as_tuple(*logger, (Verbosity) json["level"], type, |