torrent-control icon indicating copy to clipboard operation
torrent-control copied to clipboard

Constant refresh after clicking on the "Torrent Control" extension with Transmission

Open kozak-codes opened this issue 2 years ago • 1 comments

I have Torrent Control 0.2.27 installed on Firefox 102.0 (64-bit). When I click "Torrent control" it opens transmission and logs me in, but it reloads the page every second or so meaning I can't do anything on the transmission UI.

Reloading the page manually seems to solve the problem.

Is there any way we can disable the automatic reload functionality for Transmission?

kozak-codes avatar Aug 04 '22 00:08 kozak-codes

This issue seems to be related to:

                else if (response.status === 409 && response.headers.has('X-Transmission-Session-Id'))
                    return this.logIn().then(() => resolve());

in transmission.js

Somehow this causes an infinite loop/recursion when we call this.login again. However, the system already successfully authenticated.

kozak-codes avatar Aug 18 '22 21:08 kozak-codes