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/4d0cc28b3b21cfe4444a2c5122dc81072b1bc06e/MediaBrowser.Tests/ConsistencyTests/TextIndexing/WordOccurrences.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

14 lines
374 B

using System.Collections.Generic;
namespace MediaBrowser.Tests.ConsistencyTests.TextIndexing
{
public class WordOccurrences : List<WordOccurrence>
{
public void AddOccurrence(string fileName, string fullPath, int lineNumber, int wordIndex)
{
this.Add(new WordOccurrence(fileName, fullPath, lineNumber, wordIndex));
}
}
}