Fix bug where .jpg files are not counted in scan list (only .jpeg)
This commit is contained in:
parent
8318d9daad
commit
70f4304b2e
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ BackgroundDep = direct_thing_client_dependency(
|
|||
BackgroundDetectThing, "/background_detect/"
|
||||
)
|
||||
|
||||
IMAGE_REGEX = re.compile(r"-?[0-9]+_-?[0-9]+\.jpeg$")
|
||||
IMAGE_REGEX = re.compile(r"-?[0-9]+_-?[0-9]+\.jpe?g$")
|
||||
|
||||
|
||||
class NotEnoughFreeSpaceError(IOError):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue