Details
-
Type: Bug
-
Status: Closed (View Workflow)
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.6
-
Fix Version/s: 1.6.1
-
Component/s: o.c.jsword.util
-
Labels:None
Description
I found it necessary to set the index status after downloading an index in IndexDownloader.downloadIndex(..)
Just before the finally I added
book.deactivate(null);
book.activate(null);
book.setIndexStatus(IndexStatus.DONE);
I think the deactivation and reactivation is probably unnecessary but believe the index status needs to be set. In other words my code started working after I added setIndexStatus but not before.