New: Added support for Rarbg as replacement for Eztv.

This commit is contained in:
Taloth Saldono 2015-05-24 20:41:12 +02:00
parent bbcabf0632
commit 6744e0d506
12 changed files with 430 additions and 3 deletions

View file

@ -70,6 +70,11 @@ namespace NzbDrone.Common.Http
_segments.Add(key, value);
}
public void AddQueryParam(string segment, string value)
{
UriBuilder.SetQueryParam(segment, value);
}
public void AddCookie(string key, string value)
{
Cookies[key] = value;