1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-20 13:27:10 +00:00

Fixed: Default value in new Delay Profile

This commit is contained in:
Qstick 2023-04-13 18:52:13 -05:00
parent 3d244057b5
commit c514c7cac0
2 changed files with 2 additions and 0 deletions

View file

@ -191,6 +191,7 @@ const delayProfileShape = {
enableTorrent: PropTypes.shape(boolSettingShape).isRequired,
usenetDelay: PropTypes.shape(numberSettingShape).isRequired,
torrentDelay: PropTypes.shape(numberSettingShape).isRequired,
bypassIfHighestQuality: PropTypes.shape(boolSettingShape).isRequired,
order: PropTypes.shape(numberSettingShape),
tags: PropTypes.shape(tagSettingShape).isRequired
};

View file

@ -13,6 +13,7 @@ const newDelayProfile = {
preferredProtocol: 'usenet',
usenetDelay: 0,
torrentDelay: 0,
bypassIfHighestQuality: false,
tags: []
};