mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 19:01:06 -05:00
fix: Improve VideoArchiver cog structure - Remove command registration (handled by commands.py) - Ensure data directories exist - Add better initialization and cleanup - Improve error handling
This commit is contained in:
@@ -62,6 +62,7 @@ class VideoArchiver(commands.Cog):
|
|||||||
|
|
||||||
# Initialize queue manager
|
# Initialize queue manager
|
||||||
queue_path = self.data_path / "queue_state.json"
|
queue_path = self.data_path / "queue_state.json"
|
||||||
|
queue_path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
self.queue_manager = EnhancedVideoQueueManager(
|
self.queue_manager = EnhancedVideoQueueManager(
|
||||||
max_retries=3,
|
max_retries=3,
|
||||||
retry_delay=5,
|
retry_delay=5,
|
||||||
|
|||||||
Reference in New Issue
Block a user