ObjFW  Diff

Differences From Artifact [dd8060da94]:

To Artifact [089b720c12]:


210
211
212
213
214
215
216


217
218
219



220

221
222
223
224
225
226
227
210
211
212
213
214
215
216
217
218



219
220
221

222
223
224
225
226
227
228
229







+
+
-
-
-
+
+
+
-
+







						length: length - last];
		value = value.stringByDeletingTrailingWhitespaces;

		if ([name isEqual: @"charset"])
			charset = value;
	}

	ret = OFStringEncodingAutodetect;
	if (charset != nil) {
	@try {
		ret = OFStringEncodingParseName(charset);
	} @catch (OFInvalidArgumentException *e) {
		@try {
			ret = OFStringEncodingParseName(charset);
		} @catch (OFInvalidArgumentException *e) {
		ret = OFStringEncodingAutodetect;
		}
	}

	return ret;
}

@implementation OFHTTPResponse
@synthesize statusCode = _statusCode, headers = _headers;