Branch: refs/heads/master
Home: https://github.com/ddclient/ddclient
Commit: fe3893e26a8733d7e3a02212842107510519fb82
https://github.com/ddclient/ddclient/commit/fe3893e26a8733d7e3a02212842107510519fb82
Author: Richard Hansen <rh...@rh...>
Date: 2020-06-09 (Tue, 09 Jun 2020)
Changed paths:
M ddclient
Log Message:
-----------
Fix regex searching for Content-Type header
* Add the `m` modifier because the `$headers` variable can contain
multiple headers. If `$headers` contains a Content-Type header but
it is the second or later header then the regex won't match
without `m`.
* Add the `i` modifier because RFC 7230 says that header field names
are case-insensitive.
* Don't require a space after the colon because RFC 7230 says that
the space is optional.
Commit: 1d78f5fbe333116888de48330163db1962ec9c94
https://github.com/ddclient/ddclient/commit/1d78f5fbe333116888de48330163db1962ec9c94
Author: Richard Hansen <rh...@rh...>
Date: 2020-06-09 (Tue, 09 Jun 2020)
Changed paths:
M ddclient
Log Message:
-----------
Merge pull request #155 from rhansen/content-type-header
Fix regex searching for Content-Type header
Compare: https://github.com/ddclient/ddclient/compare/7d094c09763a...1d78f5fbe333
|