You've already forked Sonarr
							
							
				mirror of
				https://github.com/Sonarr/Sonarr.git
				synced 2025-10-31 00:07:55 +02:00 
			
		
		
		
	Newznab urls will have any trailing slashes stripped before searching
This commit is contained in:
		| @@ -68,12 +68,12 @@ namespace NzbDrone.Core.Indexers.Newznab | ||||
|             get | ||||
|             { | ||||
|                 //Todo: We should be able to update settings on start | ||||
|                 if (Name.Equals("nzbs.org")) | ||||
|                 if (Name.Equals("nzbs.org", StringComparison.InvariantCultureIgnoreCase)) | ||||
|                 { | ||||
|                     Settings.Categories = new List<int>{ 5000 }; | ||||
|                 } | ||||
|  | ||||
|                 var url = String.Format("{0}/api?t=tvsearch&cat={1}", Settings.Url, String.Join(",", Settings.Categories)); | ||||
|                 var url = String.Format("{0}/api?t=tvsearch&cat={1}", Settings.Url.TrimEnd('/'), String.Join(",", Settings.Categories)); | ||||
|  | ||||
|                 if (!String.IsNullOrWhiteSpace(Settings.ApiKey)) | ||||
|                 { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user