private async Task UpdateSession(bool notify = true)
        {
            await _chatsRepository.UpdateSession(GetStoredSession());

            if (notify)
            {
                _sessionData.IsAccountUpdated = true;
            }

            _sessionSubject.OnNext(_sessionData);
        }