Fix bug with nested replies option

The option wouldn't sometimes take effect.

Change-Id: Ia6a85de1bde9f3aa56d710c77797ce97d6cc3b4a
diff --git a/src/contentScripts/communityConsole/start.js b/src/contentScripts/communityConsole/start.js
index dce460b..1bb6a3f 100644
--- a/src/contentScripts/communityConsole/start.js
+++ b/src/contentScripts/communityConsole/start.js
@@ -12,7 +12,8 @@
 
 getOptions(null).then(options => {
   /* IMPORTANT NOTE: Remember to change this when changing the "ifs" below!! */
-  if (options.loaddrafts || options.interopthreadpage) {
+  if (options.loaddrafts || options.interopthreadpage ||
+      options.nestedreplies) {
     var startup =
         JSON.parse(document.querySelector('html').getAttribute('data-startup'));