You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've observed that since the release of v0.0.5, the changes in the content path no longer trigger a scan, which prevents new archives from being added to the database. This issue seems to stem from the fact that directory updates are now being excluded from the watchfiles in scan.py, as seen in this line of code:
Because the scanners such as 22-ehviewer.py require the parent directory path of the image files, the scan will skip them when is invoked with a path to image files. Is this modification intended to address other issues?
The text was updated successfully, but these errors were encountered:
As described in the release note, directory will not trigger a scan during watch since v0.0.5.
This is because, unlike single files, it is difficult to determine when the contents of this directory have been completely created.
Therefore we cannot accurately count some metadata, such as page count.
I'll try to re-enable it once a good solution is available.
I've observed that since the release of v0.0.5, the changes in the content path no longer trigger a scan, which prevents new archives from being added to the database. This issue seems to stem from the fact that directory updates are now being excluded from the watchfiles in
scan.py
, as seen in this line of code:comiclib/comiclib/scan.py
Line 111 in f82bec4
Because the scanners such as
22-ehviewer.py
require the parent directory path of the image files, thescan
will skip them when is invoked with a path to image files. Is this modification intended to address other issues?The text was updated successfully, but these errors were encountered: