mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 14:37:07 -04:00
Switch assignment to operator
This commit is contained in:
parent
5f1d7ddc11
commit
cb08c0767d
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ export default {
|
|||
return selectProviderSchema(state, section, payload, (selectedSchema) => {
|
||||
selectedSchema.name = payload.presetName ?? payload.implementationName;
|
||||
selectedSchema.implementationName = payload.implementationName;
|
||||
selectedSchema.minRefreshInterval ??= payload.minRefreshInterval;
|
||||
selectedSchema.minRefreshInterval = selectedSchema.minRefreshInterval ?? payload.minRefreshInterval;
|
||||
selectedSchema.minimumAvailability = 'released';
|
||||
selectedSchema.rootFolderPath = '';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue