mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-29 00:39:28 +00:00
Fix decoding of spaces in URL-encoded parameters
This commit is contained in:
1
NEWS
1
NEWS
@@ -50,6 +50,7 @@ Bug fixes
|
||||
- [web] cards list not accessible when changing address book in expanded card view
|
||||
- [web] added missing subject to junk/not junk reports
|
||||
- [web] fixed file uploader URL in mail editor
|
||||
- [web] fixed decoding of spaces in URL-encoded parameters (+)
|
||||
- [eas] hebrew folders encoding problem using EAS (#4240)
|
||||
- [eas] avoid sync requests for shared folders every second (#4275)
|
||||
|
||||
|
||||
@@ -173,6 +173,7 @@ static SoProduct *commonProduct = nil;
|
||||
- (void) _parseQueryString: (NSString *) _s
|
||||
{
|
||||
NSEnumerator *e;
|
||||
NSMutableString *urlEncodedValue;
|
||||
NSString *part;
|
||||
NSRange r;
|
||||
NSString *key, *value;
|
||||
@@ -190,8 +191,9 @@ static SoProduct *commonProduct = nil;
|
||||
else
|
||||
{
|
||||
key = [[part substringToIndex:r.location] stringByUnescapingURL];
|
||||
value = [[part substringFromIndex:(r.location + r.length)]
|
||||
stringByUnescapingURL];
|
||||
urlEncodedValue = [NSMutableString stringWithString: [part substringFromIndex:(r.location + r.length)]];
|
||||
[urlEncodedValue replaceString: @"+" withString: @" "];
|
||||
value = [urlEncodedValue stringByUnescapingURL];
|
||||
}
|
||||
if (key && value)
|
||||
[queryParameters setObject:value forKey:key];
|
||||
|
||||
Reference in New Issue
Block a user