Fishbone°
Fishbone°
> [The LearnTLA Web Site](https://learntla.com/introduction/) This web site, written and maintained by Hillel Wayne, is a beginning course in PlusCal. It covers just about all of PlusCal's programming-like constructs, but...
I also came across this issue, it's reproducible in my machine. ChangeDetection version is v0.45.22  The CSS/JSONPath/JQ/XPath Filters is something like `//*[@id="Foobar"]/div[1]`. I'm solving it temporarily using XPath1.0...
@Constantin1489, there is the `ELEMENT html` line: ```bash $ curl -fsSL $URL | xmllint --html - --debug 2> /dev/null | grep 'ELEMENT html' -C10 HTML DOCUMENT encoding=utf-8 URL=- standalone=true DTD(html)...
```bash $ curl -fsSL $URL | xmllint --html - --debug 2> /dev/null | grep 'ELEMENT html' ELEMENT html ```
> Yes, that is the problem I solved with the PR. @leiless why you edited? That is exactly the bug. > > screenshot > Sometimes, I got this ``` ELEMENT...
> @leiless can you include the URL? https://www.pdrcfw.com/OurNews.aspx XPath Filters: `//*[@id="ArticleList1"]/div[1]`
Yeah, definitely it's because the HTML source code is malformed (code after the final ``).
最近比较忙,可能还得推迟一段时间了。😔
I'm having the same issue here. ```bash $ docker exec -it changedetection_io_app_1 bash $ python3 -c "import requests; r = requests.post('http://httpbin.org/post', data='你好')" Traceback (most recent call last): File "", line...
## Possible solution https://github.com/dgtlmoon/changedetection.io/blob/0.45.24/changedetectionio/content_fetchers/requests.py#L49 ```diff r = requests.request(method=request_method, - data=request_body, + data=request_body.encode('utf-8') if type(request_body) is str else request_body, url=url, headers=request_headers, timeout=timeout, proxies=proxies, verify=False) ```