fix: don't call original on prepare_metric_for_sending

This commit is contained in:
Yimura 2023-07-25 18:10:32 +02:00
parent 13be3d3ab1
commit 31c601658f

View File

@ -47,6 +47,6 @@ namespace big
LOG(INFO) << "METRIC: " << metric->get_name() << "; DATA: " << serializer.get_string();
}
return g_hooking->get_original<prepare_metric_for_sending>()(bit_buffer, unk, time, metric);
return false;
}
}