From 52cf3401f3a31dac75391aa285934d06dc434e87 Mon Sep 17 00:00:00 2001 From: Kuinox Date: Fri, 10 Nov 2023 22:29:24 +0100 Subject: [PATCH] Fixed comment plugin metadata. (#16) --- src/app/blog/[articleName]/CommentScript.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/blog/[articleName]/CommentScript.tsx b/src/app/blog/[articleName]/CommentScript.tsx index cb4562c..75805d7 100644 --- a/src/app/blog/[articleName]/CommentScript.tsx +++ b/src/app/blog/[articleName]/CommentScript.tsx @@ -10,9 +10,9 @@ export default function CommentScript() { const scriptEl = document.createElement("script"); scriptEl.src = "https://giscus.app/client.js"; scriptEl.setAttribute("data-repo", "Draco-lang/draco-lang.github.io"); - scriptEl.setAttribute("data-repo-id", "R_kgDOKNtvDA"); + scriptEl.setAttribute("data-repo-id", "R_kgDOJbD9Tg"); scriptEl.setAttribute("data-category", "Blog Comments"); - scriptEl.setAttribute("data-category-id", "DIC_kwDOKNtvDM4CarR0"); + scriptEl.setAttribute("data-category-id", "DIC_kwDOJbD9Ts4Ca3WA"); scriptEl.setAttribute("data-mapping", "url"); scriptEl.setAttribute("data-strict", "1"); scriptEl.setAttribute("data-reactions-enabled", "1");