Extract song info from odesli (song.link)

This commit is contained in:
2023-04-22 08:50:17 +02:00
parent 45eeb550b3
commit b62936ed54
6 changed files with 309 additions and 13 deletions

@ -240,6 +240,11 @@ export async function savePost(post: Post): Promise<undefined> {
return;
}
if (!post.tags.length) {
resolve(undefined);
return;
}
db.parallelize(() => {
let remaining = post.tags.length;
for (const tag of post.tags) {