diff --git a/config.toml b/config.toml
index dc614d96..00d0680d 100644
--- a/config.toml
+++ b/config.toml
@@ -37,12 +37,12 @@
DisableEncryption = false
ForceEncryption = false
- PreferNoEncryption = true
+ PreferNoEncryption = false
[torrentClientConfig]
DownloadDir = 'downloading' #the full OR relative path where the torrent server stores in-progress torrents
- Seed = true #boolean #seed after download
+ Seed = false #boolean #seed after download
# Never send chunks to peers.
NoUpload = false #boolean
diff --git a/goTorrentWebUI/src/TopMenu/Modals/RSSModal/RSSFeedList.js b/goTorrentWebUI/src/TopMenu/Modals/RSSModal/RSSFeedList.js
index c12e6fc8..64beb352 100644
--- a/goTorrentWebUI/src/TopMenu/Modals/RSSModal/RSSFeedList.js
+++ b/goTorrentWebUI/src/TopMenu/Modals/RSSModal/RSSFeedList.js
@@ -93,7 +93,6 @@ const inlineStyle = {
}
render() {
- //const { classes, onRequestClose, handleRequestClose, handleSubmit } = this.props;
if (this.props.RSSList.length > 0 && this.state.showList == false){
console.log("Setting list to show....")
this.setState({showList: true})
diff --git a/goTorrentWebUI/src/TopMenu/Modals/addTorrentLinkModal.js b/goTorrentWebUI/src/TopMenu/Modals/addTorrentLinkModal.js
index e5d43d7c..33d8ffa5 100644
--- a/goTorrentWebUI/src/TopMenu/Modals/addTorrentLinkModal.js
+++ b/goTorrentWebUI/src/TopMenu/Modals/addTorrentLinkModal.js
@@ -74,7 +74,7 @@ export default class addTorrentPopup extends React.Component {
}
render() {
- const { classes, onRequestClose, handleRequestClose, handleSubmit } = this.props;
+ const { classes, onClose, handleRequestClose, handleSubmit } = this.props;
return (
diff --git a/goTorrentWebUI/src/login.js b/goTorrentWebUI/src/login.js
index b4efbc5c..0b2f5088 100644
--- a/goTorrentWebUI/src/login.js
+++ b/goTorrentWebUI/src/login.js
@@ -86,7 +86,7 @@ export default class Login extends React.Component {
}
render() {
- const { classes, onRequestClose, handleRequestClose, handleSubmit } = this.props;
+ const { classes, onClose, handleRequestClose, handleSubmit } = this.props;
return (