From 8e98af0e9f7df219e63cd362af3282b102c53fff Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 11 May 2021 15:03:02 -0400 Subject: [PATCH] fix(web): allow to change expired password from login page --- UI/SOGoUI/UIxComponent.m | 1 + 1 file changed, 1 insertion(+) diff --git a/UI/SOGoUI/UIxComponent.m b/UI/SOGoUI/UIxComponent.m index d21a63845..12939f9a6 100644 --- a/UI/SOGoUI/UIxComponent.m +++ b/UI/SOGoUI/UIxComponent.m @@ -802,6 +802,7 @@ static SoProduct *commonProduct = nil; // If the action is 'connect' (or 'logoff'), we let it go as the token // needs to be created (or destroyed) during the session initialization if ([_actionName isEqualToString: @"connect"] || + [_actionName isEqualToString: @"changePassword"] || [_actionName isEqualToString: @"logoff"]) { return [super performActionNamed: _actionName];