Kende Détár
Kende Détár
@feross I'm currently trying to fix this issue, by introducing a discrete interval list data type to store the selections. this could help us fix the issue with `deselect`. I'm...
Interestingly, if I manually empty out the `_selections` array after the torrent is added, then everything works fine. However, the deselect method doesn't have the same effect. If I do...
Here's what I've found (these line numbers are all in `libs/torrent.js`): on lines 685-695, in the `_markUnverified` method, all unverified pieces are selected (so 1 item per piece is added...
@ThaUnknown Thanks for pointing me in the right direction. [I opened a draft PR](https://github.com/webtorrent/webtorrent/pull/2757) with a solution that I came up with. Could you or any other maintainers/contributers check it...
I have a similar situation in [this repo](https://github.com/detarkende/stremio-ncore-addon/tree/f5ca898299de1c29593235b3d3dc8204095f16e1). When I create a file `src/client/api/api-client.ts`, with this content: ```ts import { hc } from 'hono/client'; import type { ApiRoutes } from...
@pjeziorowski You're right, that fixed it! Thank you, I have been stuck on this issue for days now 🎉 Btw, if anyone is in the same situation, this video helped...