This commit is contained in:
Meiam
2023-02-07 20:50:19 +08:00
parent 54b13d647d
commit 339b05b763
4 changed files with 12 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ namespace Jellyfin.MeiamSub.Thunder
private readonly ILogger<ThunderProvider> _logger;
private static readonly HttpClient _httpClient = new HttpClient();
public int Order => 0;
public int Order => 1;
public string Name => "MeiamSub.Thunder";
/// <summary>
@@ -124,7 +124,8 @@ namespace Jellyfin.MeiamSub.Thunder
CommunityRating = Convert.ToSingle(m.rate),
ProviderName = $"{Name}",
Format = ExtractFormat(m.sname),
Comment = $"Format : { ExtractFormat(m.sname)} - Rate : { m.rate }"
Comment = $"Format : { ExtractFormat(m.sname)} - Rate : { m.rate }",
IsHashMatch = true
}).OrderByDescending(m => m.CommunityRating);
}
}