You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Transmission has a number of CLI configuration parameters (see here), one of which is download-dir. This sets the 'default' download directory.
Using the default or kettu web UIs this box is prefilled to the value of download-dir. See screenshot:
(Download directory is pre-filled)
Whereas in combustion UI this does not happen:
(Download directory is empty, displaying NaN TB free)
I think combustion should autofill this box based on the download-dir parameter.
Observing the source code, it appears this is the intended behaviour this.torrentUpload.setDownloadDir(this.props.session_store.settings['download-dir']); in index.js, however for some reason this does not happen.
The text was updated successfully, but these errors were encountered:
Transmission has a number of CLI configuration parameters (see here), one of which is
download-dir
. This sets the 'default' download directory.Using the default or kettu web UIs this box is prefilled to the value of
download-dir
. See screenshot:(Download directory is pre-filled)
Whereas in combustion UI this does not happen:
(Download directory is empty, displaying NaN TB free)
I think combustion should autofill this box based on the
download-dir
parameter.Observing the source code, it appears this is the intended behaviour
this.torrentUpload.setDownloadDir(this.props.session_store.settings['download-dir']);
inindex.js
, however for some reason this does not happen.The text was updated successfully, but these errors were encountered: