Differences From Artifact [17a72a5d36]:
- File
src/OFHTTPResponse.m
— part of check-in
[16d3902e6d]
at
2022-06-05 10:43:20
on branch trunk
— OFHTTPResponse: Make "string" a method
This should not be a property as it reads from the stream and therefore
mutates it. (user: js, size: 8137) [annotate] [blame] [check-ins using] [more...]
To Artifact [3a885482aa]:
- File src/OFHTTPResponse.m — part of check-in [26ddd2e4e4] at 2024-01-02 17:17:25 on branch trunk — Update copyright (user: js, size: 8166) [annotate] [blame] [check-ins using] [more...]
1 | 1 2 3 4 5 6 7 8 9 | - + | /* |
| ︙ | |||
210 211 212 213 214 215 216 | 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) {
|
| ︙ |