diff options
| author | gnattu <gnattuoc@me.com> | 2024-04-17 21:32:21 +0800 |
|---|---|---|
| committer | gnattu <gnattuoc@me.com> | 2024-04-17 21:32:21 +0800 |
| commit | 1b567efeb5f4720f3d64a03359d420f83a3b781c (patch) | |
| tree | 717dfee5102c7633885211ee94bfe78809f83910 /MediaBrowser.Controller/Entities/UserRootFolder.cs | |
| parent | e4d66f35fdaece836edc26cb0d2af36fdb933d7f (diff) | |
fix: correctly pass parameters in overrides
Signed-off-by: gnattu <gnattuoc@me.com>
Diffstat (limited to 'MediaBrowser.Controller/Entities/UserRootFolder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/UserRootFolder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/UserRootFolder.cs b/MediaBrowser.Controller/Entities/UserRootFolder.cs index 9c413617d..fc8a29763 100644 --- a/MediaBrowser.Controller/Entities/UserRootFolder.cs +++ b/MediaBrowser.Controller/Entities/UserRootFolder.cs @@ -121,7 +121,7 @@ namespace MediaBrowser.Controller.Entities { ClearCache(); - await base.ValidateChildrenInternal(progress, recursive, refreshChildMetadata, false, refreshOptions, directoryService, cancellationToken) + await base.ValidateChildrenInternal(progress, recursive, refreshChildMetadata, allowRemoveRoot, refreshOptions, directoryService, cancellationToken) .ConfigureAwait(false); ClearCache(); |
