Skip to content

Commit

Permalink
Merge pull request #87 from StillLoading/ssl-error
Browse files Browse the repository at this point in the history
revert to http since api.anidb.net does not support https
  • Loading branch information
crobibero authored Jul 26, 2020
2 parents b449d53 + 87ebf76 commit 5980f42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Jellyfin.Plugin.Anime/Jellyfin.Plugin.Anime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>Jellyfin.Plugin.Anime</RootNamespace>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<FileVersion>9.0.0.0</FileVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<FileVersion>10.0.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace Jellyfin.Plugin.Anime.Providers.AniDB.Metadata
public class AniDbSeriesProvider : IRemoteMetadataProvider<Series, SeriesInfo>, IHasOrder
{
private const string SeriesDataFile = "series.xml";
private const string SeriesQueryUrl = "https://api.anidb.net:9001/httpapi?request=anime&client={0}&clientver=1&protover=1&aid={1}";
private const string SeriesQueryUrl = "http://api.anidb.net:9001/httpapi?request=anime&client={0}&clientver=1&protover=1&aid={1}";
private const string ClientName = "mediabrowser";

// AniDB has very low request rate limits, a minimum of 2 seconds between requests, and an average of 4 seconds between requests
Expand Down
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: "Anime"
guid: "a4df60c5-6ab4-412a-8f79-2cab93fb2bc5"
version: "9.0.0.0"
version: "10.0.0.0"
targetAbi: "10.6.0.0"
owner: "jellyfin"
overview: "Manage your anime from Jellyfin"
Expand Down

0 comments on commit 5980f42

Please sign in to comment.