Upped capture count warning to 10000

This commit is contained in:
Joel Collins 2020-11-06 16:15:34 +00:00
parent 061618d9e6
commit 0647acd47d

View file

@ -34,9 +34,9 @@ def main():
# Check number of captures being restored
files = make_file_list(cap_path, EXIF_FORMATS)
if len(files) >= 2000:
if len(files) >= 10000:
error_sources.append(WarningSource(
("Over 2000 captures are being restored. This may slow down server startup.",
("Over 10000 captures are being restored. This may slow down server startup.",
f"Consider moving your captures from {cap_path} to another location.")
))