Skip to content
Snippets Groups Projects
Commit 3a799b5d authored by Eric Oulashin's avatar Eric Oulashin
Browse files

DDMsgReader configurator: Added a default for...

DDMsgReader configurator: Added a default for displayIndexedModeMenuIfNoNewMessages in case it's not in DDMsgReader.cfg
parent ad6586c2
No related branches found
No related tags found
1 merge request!384DDMsgReader configurator: Added a default for displayIndexedModeMenuIfNoNewMessages in case it's not in DDMsgReader.cfg
Pipeline #5217 passed
......@@ -748,6 +748,8 @@ function readDDMsgReaderCfgFile()
retObj.cfgOptions.saveAllHdrsWhenSavingMsgToBBSPC = false;
if (!retObj.cfgOptions.hasOwnProperty("useIndexedModeForNewscan"))
retObj.cfgOptions.useIndexedModeForNewscan = false;
if (!retObj.cfgOptions.hasOwnProperty("displayIndexedModeMenuIfNoNewMessages"))
retObj.cfgOptions.displayIndexedModeMenuIfNoNewMessages = false;
if (!retObj.cfgOptions.hasOwnProperty("enableIndexedModeMsgListCache"))
retObj.cfgOptions.enableIndexedModeMsgListCache = true;
if (!retObj.cfgOptions.hasOwnProperty("newscanOnlyShowNewMsgs"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment