Martin Joneš
Martin Joneš
Same issue 1.19.3, latest geyser, fast login, protocollib
Then add the ability to list different downloads. The same way transmission integration does it
> that would be wonderul. the transmission card (which looks pretty similar) has that option already! I know I PRed that change
It would actually be super neat if your card supported the internal Download integration (for http/s file downloads) as well as the JDownloader integration (that one does not yet support...
Got it working by emulating the keyboard event. Waiting for the previous PR to be merged to avoid conflicts.
According to the transmission integration, it should support base64 encoded torrent files. Though I have tried 2 and for both I had gotten a service call error claiming the file...
What the Developer Tools -> services in HA show: Add a new torrent to download (URL, magnet link or Base64 encoded).
```js async function convertToMagnet(torrentFile) { const reader = new FileReader(); reader.readAsArrayBuffer(torrentFile); return new Promise((resolve, reject) => { reader.onloadend = () => { const buf = new Uint8Array(reader.result); const infoHash =...