mirror of
https://github.com/Radarr/Radarr
synced 2026-03-04 11:32:23 +01:00
Fixed: Default ports for uTorrent and qBittorrent
This commit is contained in:
parent
2a0df7e83e
commit
e6b8b17b21
2 changed files with 3 additions and 3 deletions
|
|
@ -21,7 +21,7 @@ public class QBittorrentSettings : IProviderConfig
|
|||
public QBittorrentSettings()
|
||||
{
|
||||
Host = "localhost";
|
||||
Port = 9091;
|
||||
Port = 8080;
|
||||
TvCategory = "tv-sonarr";
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
using FluentValidation;
|
||||
using FluentValidation;
|
||||
using NzbDrone.Core.Annotations;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
using NzbDrone.Core.Validation;
|
||||
|
|
@ -22,7 +22,7 @@ public class UTorrentSettings : IProviderConfig
|
|||
public UTorrentSettings()
|
||||
{
|
||||
Host = "localhost";
|
||||
Port = 9091;
|
||||
Port = 8080;
|
||||
TvCategory = "tv-sonarr";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue