Skip to content

Commit

Permalink
[2.9.0] Fix IDs and SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Hanania committed Oct 30, 2022
1 parent 6579f7b commit 1c96e0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
4 changes: 2 additions & 2 deletions components/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ class Utils {
Math.floor(
Math.random() *
// eslint-disable-next-line no-loss-of-precision
(99999999999 - 100000000000000 + 1)
(9999999999999999 - 100000000000000 + 1)
) + 100000000000000
).toString(),
messageCount: Math.floor(Math.random() * (30000 - 1000 + 1)) + 1000,
Expand Down Expand Up @@ -931,7 +931,7 @@ class Utils {
Math.floor(
Math.random() *
// eslint-disable-next-line no-loss-of-precision
(99999999999 - 100000000000000 + 1)
(9999999999999999 - 100000000000000 + 1)
) + 100000000000000
).toString() +
")",
Expand Down
12 changes: 3 additions & 9 deletions pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ export default function Document() {
/>
<meta
name="description"
content="Discord Data Package Viewer makes it easy to explore and view your Discord data package. Dig through all your old dms, messages, guilds, and more. Find forgotten memories & uncovered hidden gems.
Find forgotten memories & uncovered hidden gems."
content="Discord Data Package Viewer makes it easy to explore and view your Discord data package. Dig through all your old dms, messages, guilds, and more. Find forgotten memories & uncovered hidden gems."
/>
<meta
name="image"
Expand All @@ -72,9 +70,7 @@ export default function Document() {
/>
<meta
property="og:description"
content="Discord Data Package Viewer makes it easy to explore and view your Discord data package. Dig through all your old dms, messages, guilds, and more. Find forgotten memories & uncovered hidden gems.
Find forgotten memories & uncovered hidden gems."
content="Discord Data Package Viewer makes it easy to explore and view your Discord data package. Dig through all your old dms, messages, guilds, and more. Find forgotten memories & uncovered hidden gems."
/>
<meta
property="og:image"
Expand All @@ -88,9 +84,7 @@ export default function Document() {
/>
<meta
property="twitter:description"
content="Discord Data Package Viewer makes it easy to explore and view your Discord data package. Dig through all your old dms, messages, guilds, and more. Find forgotten memories & uncovered hidden gems.
Find forgotten memories & uncovered hidden gems."
content="Discord Data Package Viewer makes it easy to explore and view your Discord data package. Dig through all your old dms, messages, guilds, and more. Find forgotten memories & uncovered hidden gems."
/>
<meta
property="twitter:image"
Expand Down

0 comments on commit 1c96e0c

Please sign in to comment.