summaryrefslogtreecommitdiff
path: root/src/uaLookup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uaLookup.cpp')
-rw-r--r--src/uaLookup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uaLookup.cpp b/src/uaLookup.cpp
index 8cd1cb2..0fee3f0 100644
--- a/src/uaLookup.cpp
+++ b/src/uaLookup.cpp
@@ -5,7 +5,7 @@
#include <modifycommand.h>
namespace WebStat {
- UserAgentLookupOperation::UserAgentLookupOperation(Crc32Value userAgentEntityId) : entityId {userAgentEntityId} { }
+ UserAgentLookupOperation::UserAgentLookupOperation(EntityId userAgentEntityId) : entityId {userAgentEntityId} { }
void
UserAgentLookupOperation::whenComplete(DB::Connection * dbconn) const
@@ -16,7 +16,7 @@ namespace WebStat {
}
std::unique_ptr<CurlOperation>
- curlGetUserAgentDetail(Crc32Value entityId, const std::string_view uas, const char * baseUrl)
+ curlGetUserAgentDetail(EntityId entityId, const std::string_view uas, const char * baseUrl)
{
auto request = std::make_unique<UserAgentLookupOperation>(entityId);