From 253d14cfce7552615bbf1e0cf9b242bcd99552b8 Mon Sep 17 00:00:00 2001 From: smizrahi Date: Tue, 22 Oct 2024 09:46:00 +0200 Subject: [PATCH] fix(core): Specify application name in WORequest to avoid computing app name in SOPE. Sometimes the app name is wrongly defined due to invalid URL calls. --- SoObjects/SOGo/WORequest+SOGo.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SoObjects/SOGo/WORequest+SOGo.m b/SoObjects/SOGo/WORequest+SOGo.m index 267606c10..e2748b322 100644 --- a/SoObjects/SOGo/WORequest+SOGo.m +++ b/SoObjects/SOGo/WORequest+SOGo.m @@ -267,4 +267,8 @@ return ret; } +- (NSString *) applicationName { + return @"SOGo"; +} + @end