summaryrefslogtreecommitdiff
path: root/src/uaLookup.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uaLookup.hpp')
-rw-r--r--src/uaLookup.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uaLookup.hpp b/src/uaLookup.hpp
index 9714253..4de883f 100644
--- a/src/uaLookup.hpp
+++ b/src/uaLookup.hpp
@@ -9,13 +9,13 @@
namespace WebStat {
class UserAgentLookupOperation : public CurlOperation {
public:
- UserAgentLookupOperation(Crc32Value entityId);
+ UserAgentLookupOperation(EntityId entityId);
void whenComplete(DB::Connection *) const override;
- Crc32Value entityId;
+ EntityId entityId;
};
std::unique_ptr<CurlOperation> curlGetUserAgentDetail(
- Crc32Value entityId, std::string_view uas, const char * baseUrl);
+ EntityId entityId, std::string_view uas, const char * baseUrl);
}