Always regenerate when we call [NSURLComponents URL] otherwise subsequent calls will return nil

This commit is contained in:
Gregory John Casamento 2020-04-04 06:48:02 -04:00
parent b71f65f478
commit 5f1541d154

View file

@ -2456,6 +2456,7 @@ GS_PRIVATE_INTERNAL(NSURLComponents)
- (NSURL *) URL
{
internal->_dirty = YES;
return [self _regenerateURL];
}