From 232cbb06f6e5fef3cd3a67a6c41fd2f5509b5723 Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Wed, 7 May 2025 13:01:24 +0200 Subject: [PATCH] Disable Twitch event timestamp verification by default It brakes too often to be worth it as an option to be enabled by default. --- plugins/twitch/token.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/twitch/token.hpp b/plugins/twitch/token.hpp index 13c00390..205455d6 100644 --- a/plugins/twitch/token.hpp +++ b/plugins/twitch/token.hpp @@ -58,7 +58,7 @@ private: std::string _userID; std::set _tokenOptions = TokenOption::GetAllTokenOptions(); std::shared_ptr _eventSub; - bool _validateEventSubTimestamps = true; + bool _validateEventSubTimestamps = false; static bool _setup;