simplify the custom repository feature for now

This commit is contained in:
dkanada
2020-06-06 22:02:30 +09:00
parent d6184dbadd
commit 8ac2f1bb8b
3 changed files with 1 additions and 13 deletions

View File

@@ -156,11 +156,6 @@ namespace Emby.Server.Implementations.Updates
var result = new List<PackageInfo>();
foreach (RepositoryInfo repository in _config.Configuration.PluginRepositories)
{
if (!repository.Enabled)
{
continue;
}
result.AddRange(await GetPackages(repository.Url, cancellationToken).ConfigureAwait(true));
}