mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
KiwiFlare is strict about sending a UUID so removed the placeholder value and replaced it with a random GUID.
This commit is contained in:
@@ -47,9 +47,9 @@ public class KfTokenService
|
|||||||
{
|
{
|
||||||
var clearanceCookie = _cookies.GetAllCookies()["sssg_clearance"];
|
var clearanceCookie = _cookies.GetAllCookies()["sssg_clearance"];
|
||||||
_logger.Debug($"Got clearance cookie with value: {clearanceCookie}");
|
_logger.Debug($"Got clearance cookie with value: {clearanceCookie}");
|
||||||
if (await _kiwiFlare.CheckAuth("nigger"))
|
if (await _kiwiFlare.CheckAuth(Guid.NewGuid().ToString()))
|
||||||
{
|
{
|
||||||
_logger.Debug("KiwiFlare has been turned off as it's accepting a nigger sssg_clearance");
|
_logger.Debug("KiwiFlare has been turned off as it's accepting a non-existent sssg_clearance");
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
if (clearanceCookie != null)
|
if (clearanceCookie != null)
|
||||||
|
|||||||
Reference in New Issue
Block a user