mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-02-14 12:20:55 +02:00
Fixed: Allow ports above 32767
This commit is contained in:
parent
edf06dda3e
commit
72c7fc2680
@ -548,7 +548,7 @@ namespace NzbDrone.Core.Providers.Core
|
||||
|
||||
private int GetValueInt(string key, int defaultValue = 0)
|
||||
{
|
||||
return Convert.ToInt16(GetValue(key, defaultValue));
|
||||
return Convert.ToInt32(GetValue(key, defaultValue));
|
||||
}
|
||||
|
||||
public virtual string GetValue(string key, object defaultValue, bool persist = false)
|
||||
|
Loading…
x
Reference in New Issue
Block a user