diff --git a/.github/config.yml b/.github/config.yml
index 87b5f8dc..3fcf78b9 100644
--- a/.github/config.yml
+++ b/.github/config.yml
@@ -1,17 +1,17 @@
# ProBot Request Info (https://probot.github.io/apps/request-info/)
requestInfoReplyComment: >
- We would appreciate it if you could provide us with more information about this
+ 👋 We would appreciate it if you could provide us with more information about this
issue.

requestInfoLabelToAdd: 'need more info'
# ProBot Welcome (https://probot.github.io/apps/welcome/)
newPRWelcomeComment: >
- Thanks for opening this pull request! You're awesome.
+ 🙌 Thanks for opening this pull request! You're awesome.

firstPRMergeComment: >
- Congrats on getting your first pull request landed!
+ 🎉 Congrats on getting your first pull request landed!

# ProBot WIP (https://probot.github.io/apps/wip/)
diff --git a/.github/lock.yml b/.github/lock.yml
index 9390a223..0f826050 100644
--- a/.github/lock.yml
+++ b/.github/lock.yml
@@ -1,4 +1,4 @@
# ProBot Lock (https://probot.github.io/apps/lock/)
-daysUntilLock: 180
+daysUntilLock: 90
lockComment: false
diff --git a/.github/no-response.yml b/.github/no-response.yml
index 1c396cf1..714c1e16 100644
--- a/.github/no-response.yml
+++ b/.github/no-response.yml
@@ -3,9 +3,7 @@
daysUntilClose: 7
responseRequiredLabel: 'need more info'
closeComment: >
- This issue has been automatically closed because there was no response to the
- maintainer's request for more information from the issue opener. With only the
- information that is currently in the issue, we don't have enough information to
- take action. Please leave a comment or open a new issue if you have the additional
- information we need to investigate further.
- 
+ This issue has been automatically closed because there was no response to a
+ request for more information from the issue opener. Please leave a comment or
+ open a new issue if you have additional information related to this issue.
+

diff --git a/package.json b/package.json
index c4dcfebc..069aaf9e 100644
--- a/package.json
+++ b/package.json
@@ -34,7 +34,7 @@
"mkdirp": "^0.5.1",
"music-metadata": "^1.0.0",
"network-address": "^1.1.0",
- "parse-torrent": "^5.7.3",
+ "parse-torrent": "^6.0.1",
"prettier-bytes": "^1.0.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
diff --git a/src/renderer/pages/create-torrent-page.js b/src/renderer/pages/create-torrent-page.js
index 13d14d94..fe532a59 100644
--- a/src/renderer/pages/create-torrent-page.js
+++ b/src/renderer/pages/create-torrent-page.js
@@ -191,9 +191,14 @@ function handleSubmit () {
path: this.state.basePath,
files: this.state.files,
announce: announceList,
- private: this.state.isPrivate,
comment: this.state.comment.trim()
}
+
+ // If torrent is not private, leave private flag unset. This ensures that
+ // the torrent info hash will match the result generated by other tools,
+ // including webtorrent-cli.
+ if (this.state.isPrivate) options.private = true
+
dispatch('createTorrent', options)
}