Skip to content

Commit

Permalink
Fix the same issue for the 18th time
Browse files Browse the repository at this point in the history
  • Loading branch information
DonovanDMC committed Apr 29, 2024
1 parent 34f8c92 commit 7e31bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function docsURL(version: string, type: "class" | "interface" | "enum" |
return `https://docs.oceanic.ws/v${version}#type=${type as string}&module=${module}&name=${name}&otherName=${otherName || "undefined"}`;
}
}
return `https://docs.oceanic.ws/v${version}/${typeName}/${includeModule ? `${module.replaceAll("/", "_")}.` : ""}${name}.html${otherName ? `#${otherName}` : ""}`;
return `https://docs.oceanic.ws/v${version}/${typeName}/${includeModule ? `${module.replaceAll("/", "_")}.` : ""}${name.replaceAll("/", "_")}.html${otherName ? `#${otherName}` : ""}`;
}

export async function find(version: string, name: string) {
Expand Down

0 comments on commit 7e31bd5

Please sign in to comment.