Remove slash

This commit is contained in:
Gregory John Casamento 2020-03-30 09:24:18 -04:00
parent 7c52cd9f72
commit 2fb63480be

View file

@ -2535,7 +2535,7 @@ GS_PRIVATE_INTERNAL(NSURLComponents)
if (internal->_path != nil)
{
urlString = [urlString stringByAppendingFormat: @"/%@", internal->_path];
urlString = [urlString stringByAppendingFormat: @"%@", internal->_path];
}
if ([internal->_queryItems count] > 0) // if query items is nil, this will also return 0