From 2e1b22cb230d84e87b669fda4f143329b248a624 Mon Sep 17 00:00:00 2001 From: smizrahi Date: Mon, 3 Oct 2022 13:45:10 +0200 Subject: [PATCH] feat(password-recovery): Fix build issue --- .gitignore | 2 -- SoObjects/SOGo/JWT.m | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index cf95b233d..43f827890 100644 --- a/.gitignore +++ b/.gitignore @@ -44,5 +44,3 @@ UI/WebServerResources/js/vendor/ckeditor/plugins/onchange/docs UI/WebServerResources/js/vendor/ckeditor/plugins/scayt/*.md UI/WebServerResources/js/vendor/ckeditor/skins/n1theme/*.md -# JS -UI/WebServerResources/js/*.map diff --git a/SoObjects/SOGo/JWT.m b/SoObjects/SOGo/JWT.m index 89dbac2a7..87fb317dd 100644 --- a/SoObjects/SOGo/JWT.m +++ b/SoObjects/SOGo/JWT.m @@ -124,7 +124,7 @@ static const NSString *kTyp = @"JWT"; unsigned char hs256[HS256_TOKEN_LENGH] = {}; NSString *headerBase64, *payloadBase64, *content, *token; NSArray *sortedKeys; - NSMutableDictionary *sortedDict + NSMutableDictionary *sortedDict; // Reorder dictionary keys sortedKeys = [[dict allKeys] sortedArrayUsingSelector: @selector(compare:)];