fix problem in download.py when title has not been set

This commit is contained in:
Thomas Peetz
2025-08-19 08:55:45 +02:00
parent ddc5797549
commit a6a03e3f04
13 changed files with 221 additions and 50 deletions
+3 -3
View File
@@ -21,10 +21,10 @@ class BaseMixin:
class BaseVideoMixin:
cloud_link = Column(String)
file_name = Column(String)
cloud_link = Column(String, nullable=True)
file_name = Column(String, nullable=True)
path = Column(String)
review = Column(Boolean)
title = Column(String)
url = Column(String, unique=True)
url = Column(String, nullable=True)
should_download = Column(Boolean)