DevilXD

Results 346 comments of DevilXD

I wasn't able to catch this one, but I've added some extra logic that should take care of this problem. The changes can be found here: https://github.com/DevilXD/TwitchDropsMiner/commit/5b515be34bd0c282a38886c4fca1991141d01c72 Unless it repeats...

Hmm, two things: • It appears that the "invalid URL" is actually an URL-encoded JSON payload, which suggests that Twitch uses the same route for sending stream chunks information, and...

This should do it: https://github.com/DevilXD/TwitchDropsMiner/commit/a7088161d70fe5b8f6dd952b4efc597c3d5aa49e Now we wait :hourglass:

Well, funnily enough, it happened again: ```py 06:59:21: ERROR: Exception in _watch_loop task 06:59:21: Traceback (most recent call last): 06:59:21: File "utils.py", line 142, in wrapper 06:59:21: File "twitch.py", line...

Unfortunately, this does not seem to include any useful information either. There is an exception handler that's supposed to print the invalid response to the output window right before the...

> Anything to redact there? Not really, aiohttp does not include headers in it's repr output, and that's where the most sensitive info is included (the authorization token). The thing...

It's really weird to be showing the wrong line number then. Can you confirm that you have the handler in-place, inside your `channel.py` file, at L388-391 like so?: https://github.com/DevilXD/TwitchDropsMiner/blob/86f339f4f6102df78eb7e0aa8532c941a5f1e6d3/channel.py#L388-L391 I'm...

> AttributeError: module 'aiohttp.client_exceptions' has no attribute 'InvalidUrlClientError' Big OOF right there. It's yet another thing that's supposed to work here, but doesn't. Documentation clearly states this exception exists: https://docs.aiohttp.org/en/stable/client_reference.html#aiohttp.InvalidUrlClientError,...

> It seems like InvalidUrlClientError was only introduced in [v3.10.0](https://github.com/aio-libs/aiohttp/releases/tag/v3.10.0), and sure enough, I'm still on v3.9.5: Huh. I've changed it from just `InvalidURL`, because [someone ran into this issue...

I'm reverting the commit that changed `aiohttp.InvalidURL` to `aiohttp.client_exceptions.InvalidUrlClientError`. https://github.com/DevilXD/TwitchDropsMiner/commit/9c58befac35bde6f80fe93bb61c61961e296a5a5 implements a new change, where the `available_chunks` contents I'm after, will be included as a `MinerException` message contents instead. That...