mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed: Monitoring options not be applied when adding a new series to an empty root folder
This commit is contained in:
parent
27246de623
commit
4b7ee3cb9e
@ -75,6 +75,7 @@ public void Scan(Series series)
|
||||
if (_diskProvider.GetDirectories(rootFolder).Empty())
|
||||
{
|
||||
_logger.Warn("Series' root folder ({0}) is empty.", rootFolder);
|
||||
_eventAggregator.PublishEvent(new SeriesScanSkippedEvent(series, SeriesScanSkippedReason.RootFolderIsEmpty));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -18,6 +18,7 @@ public SeriesScanSkippedEvent(Series series, SeriesScanSkippedReason reason)
|
||||
public enum SeriesScanSkippedReason
|
||||
{
|
||||
RootFolderDoesNotExist,
|
||||
RootFolderIsEmpty,
|
||||
SeriesFolderDoesNotExist
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user