feat: add per-video notes with localStorage, notes tab filter

This commit is contained in:
Gan, Jimmy
2026-06-24 01:42:12 +08:00
parent f74a428521
commit 5bfd72ab3d
2 changed files with 42 additions and 13 deletions
+1 -1
View File
@@ -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