Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/1f32cd94a6d83ed80dc103dccdbb95e4b9043890/MediaBrowser.Model/IO/IShortcutHandler.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.IO
|
|
|
|
|
{
|
|
|
|
|
public interface IShortcutHandler
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the extension.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The extension.</value>
|
|
|
|
|
string Extension { get; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified shortcut path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="shortcutPath">The shortcut path.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string Resolve(string shortcutPath);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the specified shortcut path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="shortcutPath">The shortcut path.</param>
|
|
|
|
|
/// <param name="targetPath">The target path.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
void Create(string shortcutPath, string targetPath);
|
|
|
|
|
}
|
|
|
|
|
}
|