mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
Fixed: Add Indexer modal fails due to null encoding
This commit is contained in:
@@ -68,7 +68,7 @@ namespace Prowlarr.Api.V1.Indexers
|
||||
resource.BaseUrl = definition.BaseUrl;
|
||||
resource.Description = definition.Description;
|
||||
resource.Language = definition.Language;
|
||||
resource.Encoding = definition.Encoding.EncodingName;
|
||||
resource.Encoding = definition.Encoding?.EncodingName ?? null;
|
||||
resource.Enable = definition.Enable;
|
||||
resource.Redirect = definition.Redirect;
|
||||
resource.SupportsRss = definition.SupportsRss;
|
||||
|
||||
Reference in New Issue
Block a user