From b35d3bda16edb90fdbad140272d567611ec41f6b Mon Sep 17 00:00:00 2001 From: vishnukvmd Date: Tue, 15 Nov 2022 17:21:44 +0530 Subject: [PATCH] Reset cache on logout --- lib/core/configuration.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/core/configuration.dart b/lib/core/configuration.dart index 94d1709da4..6b29337de0 100644 --- a/lib/core/configuration.dart +++ b/lib/core/configuration.dart @@ -130,6 +130,7 @@ class Configuration { _key = null; _cachedToken = null; _secretKey = null; + _authSecretKey = null; Bus.instance.fire(SignedOutEvent()); }