Fix: Missing datetime import in plugin_load

This commit is contained in:
2026-01-06 19:56:43 +09:00
parent 3cdcefd89d
commit b68ca382d0
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
name: GDM
package_name: gommi_downloader_manager
version: '0.1.8'
version: '0.1.9'
description: FlaskFarm 범용 다운로더 큐 - YouTube, 애니24, 링크애니, Anilife 지원
developer: projectdx
home: https://gitea.yommi.duckdns.org/projectdx/gommi_downloader_manager

View File

@@ -284,6 +284,7 @@ class ModuleQueue(PluginModuleBase):
# DB에서 진행 중인 작업 로드
with F.app.app_context():
from .model import ModelDownloadItem
from datetime import datetime
ModelDownloadItem.P = self.P
ModelDownloadItem.check_migration()