From 8edc5f68df68df98204b917c14162cc9280d509e Mon Sep 17 00:00:00 2001 From: Nils Date: Mon, 28 Jun 2021 12:18:46 +0200 Subject: [PATCH] Fixed compile error --- instance.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instance.cpp b/instance.cpp index 4cc328a..5f0e263 100644 --- a/instance.cpp +++ b/instance.cpp @@ -155,7 +155,7 @@ void Channel::parse_sjoin(const Event& event, Cache& cache, NetworkInfo& netInfo // Check size argsSizeCheck("SJOIN", event.args, 3); // Set values - creationTime = std::stoull(std::string(event.args[0])); + timeStamp = std::stoull(std::string(event.args[0])); name = event.args[1]; mode.parse(event.args[2], netInfo); // Get members