We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fatal Exception: NSRangeException *** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array
in HttpConnection.m 1477 line.
DDRange range = [[ranges objectAtIndex:rangeIndex] ddrangeValue];
should modify to :
DDRange range = ((rangeIndex >= 0) && (ranges.count < rangeIndex)) ? [[ranges objectAtIndex:rangeIndex] ddrangeValue] : (DDRange){0};
The text was updated successfully, but these errors were encountered:
https://github.com/robbiehanson/CocoaHTTPServer/issues/78 I was also facing the same issue and I found the solution here.
Sorry, something went wrong.
No branches or pull requests
Fatal Exception: NSRangeException
*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array
in HttpConnection.m 1477 line.
should modify to :
The text was updated successfully, but these errors were encountered: