FindInactiveBooks now fires ScanBegin and ScanEnd events

This commit is contained in:
Michael Bucari-Tovo 2022-06-10 18:30:16 -06:00
parent d993941c4d
commit 7bcabdda38

View File

@ -31,6 +31,13 @@ namespace ApplicationServices
{
logRestart();
lock (_lock)
{
if (Scanning)
return new();
ScanBegin?.Invoke(null, accounts.Length);
}
//These are the minimum response groups required for the
//library scanner to pass all validation and filtering.
var libraryOptions = new LibraryOptions
@ -83,6 +90,7 @@ namespace ApplicationServices
{
stop();
var putBreakPointHere = logOutput;
ScanEnd?.Invoke(null, null);
}
}