diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-06 22:02:30 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-06-06 22:02:30 +0900 |
| commit | 8ac2f1bb8be29bf9d2285958cb233692765bfe32 (patch) | |
| tree | 09af340a7804b0da53c21891b999f790ea670ca5 /Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs | |
| parent | d6184dbadd4bb2dc85b28f61d004f334df7b3951 (diff) | |
simplify the custom repository feature for now
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs b/Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs index b6004adef..1461c7c57 100644 --- a/Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs +++ b/Jellyfin.Server/Migrations/Routines/AddDefaultPluginRepository.cs @@ -14,8 +14,7 @@ namespace Jellyfin.Server.Migrations.Routines private readonly RepositoryInfo _defaultRepositoryInfo = new RepositoryInfo { Name = "Jellyfin Stable", - Url = "https://repo.jellyfin.org/releases/plugin/manifest-stable.json", - Enabled = true + Url = "https://repo.jellyfin.org/releases/plugin/manifest-stable.json" }; /// <summary> |
