diff options
| author | Factiven <[email protected]> | 2023-10-24 11:05:06 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-10-24 11:05:06 +0700 |
| commit | 0a30e0570a5d22dd8c459fd9769fe4386c07aae8 (patch) | |
| tree | 67346a73b4be2ed5e5a7008828e4bc70bac3bd92 /components/disqus.js | |
| parent | fixed redis error for manga (#95) (diff) | |
| download | moopa-4.2.1.tar.xz moopa-4.2.1.zip | |
Update v4.2.1v4.2.1
Diffstat (limited to 'components/disqus.js')
| -rw-r--r-- | components/disqus.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/disqus.js b/components/disqus.js index 724bec3..b814851 100644 --- a/components/disqus.js +++ b/components/disqus.js @@ -4,7 +4,7 @@ const DisqusComments = ({ post }) => { const disqusShortname = post.name || "your_disqus_shortname"; const disqusConfig = { url: post.url, - identifier: post.id, // Single post id + identifier: post.url, // Single post id title: `${post.title} - Episode ${post.episode}`, // Single post title }; |