feat: add per-video notes with localStorage, notes tab filter
This commit is contained in:
@@ -87,7 +87,7 @@ async def summarize_video(video_id: str) -> str:
|
||||
async with aiosqlite.connect(DB_PATH) as db:
|
||||
await db.execute(
|
||||
"UPDATE videos SET transcript = ?, summary = ? WHERE video_id = ?",
|
||||
("No transcript available", "Could not retrieve video transcript.", video_id)
|
||||
("No transcript available", "📺 Short clip — title only, no description available. Watch to preview.", video_id)
|
||||
)
|
||||
await db.commit()
|
||||
return None
|
||||
|
||||
Reference in New Issue
Block a user