From 31c601658fdbdec19df33306aa6cfba36155b552 Mon Sep 17 00:00:00 2001 From: Yimura <24669514+Yimura@users.noreply.github.com> Date: Tue, 25 Jul 2023 18:10:32 +0200 Subject: [PATCH] fix: don't call original on prepare_metric_for_sending --- src/hooks/info/prepare_metric_for_sending.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/info/prepare_metric_for_sending.cpp b/src/hooks/info/prepare_metric_for_sending.cpp index c0c80e13..975e72a9 100644 --- a/src/hooks/info/prepare_metric_for_sending.cpp +++ b/src/hooks/info/prepare_metric_for_sending.cpp @@ -47,6 +47,6 @@ namespace big LOG(INFO) << "METRIC: " << metric->get_name() << "; DATA: " << serializer.get_string(); } - return g_hooking->get_original()(bit_buffer, unk, time, metric); + return false; } }