Skip to content

Commit

Permalink
misc: fix doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Oct 9, 2024
1 parent 8ec4bcc commit dd9a2ce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Shokofin/Pages/Scripts/Common.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ export const State = window["SHOKO_STATE_OBJECT"] || (window["SHOKO_STATE_OBJECT
* @property {boolean?} expertMode Optional. Whether the tab is only rendered when in or not in expert mode.
*/

const DefaultHelpLink = "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/";
const DefaultHelpLink = "https://docs.shokoanime.com/jellyfin/configuring-shokofin/";

/**
* @type {readonly ShokoTab[]}
Expand All @@ -506,56 +506,56 @@ const Tabs = [
{
id: "connection",
href: getConfigurationPageUrl("Shoko.Settings", "connection"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#connecting-to-shoko-server",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#connecting-to-shoko-server",
name: "Connection",
},
{
id: "metadata",
href: getConfigurationPageUrl("Shoko.Settings", "metadata"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#metadata",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#metadata",
name: "Metadata",
connected: true,
},
{
id: "library",
href: getConfigurationPageUrl("Shoko.Settings", "library"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#library",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#library",
name: "Library",
connected: true,
},
{
id: "vfs",
href: getConfigurationPageUrl("Shoko.Settings", "vfs"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#vfs",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#vfs",
name: "VFS",
connected: true,
},
{
id: "users",
href: getConfigurationPageUrl("Shoko.Settings", "users"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#users",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#users",
name: "Users",
connected: true,
},
{
id: "signalr",
href: getConfigurationPageUrl("Shoko.Settings", "signalr"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#signalr",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#signalr",
name: "SignalR",
connected: true,
},
{
id: "misc",
href: getConfigurationPageUrl("Shoko.Settings", "misc"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/#misc",
helpHref: "https://docs.shokoanime.com/jellyfin/configuring-shokofin/#misc",
name: "Misc",
connected: true,
expertMode: true,
},
{
id: "utilities",
href: getConfigurationPageUrl("Shoko.Settings", "utilities"),
helpHref: "https://docs.shokoanime.com/jellyfin-integration/utilities",
helpHref: "https://docs.shokoanime.com/jellyfin/utilities",
name: "Utilities",
},
];
Expand Down
2 changes: 1 addition & 1 deletion Shokofin/Pages/Settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="verticalSection verticalSection-extrabottompadding">
<div class="sectionTitleContainer flex align-items-center">
<h2 class="sectionTitle">Shoko</h2>
<a is="emby-linkbutton" rel="noopener noreferrer" class="raised button-alt headerHelpButton emby-button" target="_blank" href="https://docs.shokoanime.com/jellyfin-integration/configuring-shokofin/">Help</a>
<a is="emby-linkbutton" rel="noopener noreferrer" class="raised button-alt headerHelpButton emby-button" target="_blank" href="https://docs.shokoanime.com/jellyfin/configuring-shokofin/">Help</a>
</div>
<fieldset id="Connection_Section" class="verticalSection verticalSection-extrabottompadding" hidden>
<legend>
Expand Down

0 comments on commit dd9a2ce

Please sign in to comment.