aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers
AgeCommit message (Collapse)Author
2019-09-02Fix warnings, improve performance (#1665)Bond-009
* Fix warnings, improve performance `QueryResult.Items` is now a `IReadOnlyList` so we don't need to allocate a new `Array` when we have a `List` (and `Items` shouldn't need to be mutable anyway) * Update Providers .csproj to latest C# * Remove extra newline from DtoService.cs * Remove extra newline from UserLibraryService.cs
2019-09-02Merge pull request #1686 from Bond-009/warn7Anthony Lavado
More warning fixes
2019-09-02Merge pull request #1702 from Bond-009/warn8Anthony Lavado
Fix more warnings
2019-09-01Use regex to replace multiple spaces with one spaceAndrew Rabert
This communicates the intent of the code more clearly than before. No noticeable performance impact.
2019-09-01Fix infinite looping when scanning TV metadataAndrew Rabert
It's a possible that name and sb will never be equal. This is caused by additional replacements before this loop. Regression introduced in c699c546e4124da8c1978b86d1a424d24d3d77d6a
2019-09-01Fix more warningsBond_009
2019-08-29More warning fixesBond_009
2019-08-29move the transcode pathdkanada
2019-08-19Add newline after end tagClaus Vium
2019-08-19Require latest C# version in Providers projectClaus Vium
2019-08-18Fix style issuesClaus Vium
2019-08-18Add Writer and Producer to crew listClaus Vium
2019-08-18Fix api urlClaus Vium
2019-08-18Move and rename tmdb providers for better separationClaus Vium
2019-08-17Merge pull request #1629 from cvium/fix_tvdb_guest_starsAnthony Lavado
Fix tvdb guest stars with multiple roles
2019-08-17Merge pull request #1628 from cvium/fix_tvdb_ep_provider_idAnthony Lavado
Always fetch episode id as EpisodeInfo does not contain it
2019-08-16Move the first argument to its own lineClaus Vium
2019-08-16ContinueClaus Vium
2019-08-16Place args on separate linesClaus Vium
2019-08-16Invert the second ifClaus Vium
2019-08-16Invert the ifClaus Vium
2019-08-16Update MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.csClaus Vium
Co-Authored-By: Bond-009 <bond.009@outlook.com>
2019-08-16Improve LocalizationManagerBond_009
2019-08-15Merge pull request #1614 from Bond-009/docs2dkanada
Document all public/internal members of Emby.Drawing
2019-08-15Handle negative roleStartIndex since not all guest stars have rolesClaus Vium
2019-08-15Remove unused importClaus Vium
2019-08-15Fix tvdb guest stars loopClaus Vium
2019-08-15Log episode id and series id when either request failsClaus Vium
2019-08-15Always fetch episode id as EpisodeInfo does not contain itClaus Vium
2019-08-11Document all public/internal members of Emby.DrawingBond_009
Forces all new public/internal members to be documented. Enables TreatWarningsAsErrors for Emby.Drawing
2019-08-11Check checksum for plugin downloadsBond_009
* Compare the MD5 checksum when downloading plugins * Reduced log spam due to http requests * Removed 'GetTempFileResponse' function from HttpClientManager * Fixed caching for HttpClientManager
2019-08-11Merge pull request #1462 from Bond-009/installationmanagerdkanada
Improvements to InstallationManager
2019-08-09Merge pull request #1484 from SenorSmartyPants/DVD-Orderdkanada
Update TVDB provider to search based on series display order
2019-08-09Use CultureInvariant string conversion for GuidsBond-009
2019-08-07move comment to separate linedkanada
2019-08-02Merge pull request #1590 from anthonylavado/null_checkAnthony Lavado
Adds null check on studio/network name
2019-07-31Update MediaBrowser.Providers/TV/TheTVDB/TvdbSeriesProvider.csAnthony Lavado
Co-Authored-By: Claus Vium <cvium@users.noreply.github.com>
2019-07-27Adds null check on studio/network nameAnthony Lavado
2019-07-06Merge branch 'master' into release-10.3.zBond-009
2019-06-22Update TVDB provider to search based on series display orderSenorSmartyPants
2019-06-21Wait for the async authentication to finish when the JTW token expiresClaus Vium
2019-06-14Update depsBond_009
2019-06-14Improvements to InstallationManagerBond_009
2019-06-12Merge pull request #1442 from jellyfin/release-10.3.zJoshua M. Boniface
Backmerge for Release 10.3.4 and 10.3.5
2019-05-31move fanart image provider to plugindkanada
2019-05-31Fix inverted comparison in the tvdb token refresh logicClaus Vium
2019-04-30Iterate over IEnumerable before disposingBond-009
2019-04-30Make the TvdbEpisodeProvider class PublicClaus Vium
2019-03-15Merge pull request #1119 from ploughpuff/503retryJoshua M. Boniface
MusicBrainz 503 Retry Strategy
2019-03-15MusicBrainz 503 Retry StrategyPloughPuff
Upon receiving back a 503 Service Unavailable from MusicBrainz (indicating throttling), retry the same request a number of times before giving up.