diff --git a/SoObjects/SOGo/NSString+Utilities.m b/SoObjects/SOGo/NSString+Utilities.m index 640c057d6..6a93540dc 100644 --- a/SoObjects/SOGo/NSString+Utilities.m +++ b/SoObjects/SOGo/NSString+Utilities.m @@ -69,7 +69,8 @@ static NSMutableCharacterSet *urlAfterEndingChars = nil; hostR = [self rangeOfString: @"://"]; locationR = [[self substringFromIndex: (hostR.location + hostR.length)] rangeOfString: @"/"]; - newURL = [self substringFromIndex: (hostR.location + hostR.length + locationR.location)]; + newURL = [self substringFromIndex: (hostR.location + hostR.length + + locationR.location)]; } return newURL;