Skip to content

Commit

Permalink
Fix tag string quotes for fimfic stats
Browse files Browse the repository at this point in the history
  • Loading branch information
SilkRose committed Mar 11, 2024
1 parent 0151cf5 commit 25f8c8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fimficstats/fimfic-stats.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ async function mane() {
db.query(
sql.insert_tag(
tag.id,
tag.title,
tag.type.replace("tag-", ""),
tag.text,
tag.href.replace("/tag/", ""),
format_quote_string(tag.title),
format_quote_string(tag.type.replace("tag-", "")),
format_quote_string(tag.text),
format_quote_string(tag.href.replace("/tag/", "")),
),
).run();
db.query(sql.insert_tag_link(id, tag.id)).run();
Expand Down

0 comments on commit 25f8c8c

Please sign in to comment.