From c65fbb0b60fa4958811af5714f5479228c6f267b Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 14 May 2023 07:58:10 +0700 Subject: [PATCH] add filesystem rescan message --- tubearchivist/config/management/commands/ta_startup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tubearchivist/config/management/commands/ta_startup.py b/tubearchivist/config/management/commands/ta_startup.py index b5fa226..e45c46c 100644 --- a/tubearchivist/config/management/commands/ta_startup.py +++ b/tubearchivist/config/management/commands/ta_startup.py @@ -169,6 +169,7 @@ class Command(BaseCommand): media_path = os.path.join(videos, media_url) if not os.path.exists(media_path): self.stdout.write(f" file not found: {media_path}") + self.stdout.write(" run file system rescan to fix") continue media = MediaStreamExtractor(media_path)