mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
fix monitor crash on no journals
This commit is contained in:
parent
e7f7250c08
commit
7fe11b8094
@ -423,10 +423,15 @@ namespace Observatory
|
||||
{
|
||||
while (IsMonitoring())
|
||||
{
|
||||
FileInfo fileToPoke = GetJournalFilesOrdered(journalFolder).Last();
|
||||
var journals = GetJournalFilesOrdered(journalFolder);
|
||||
|
||||
using FileStream stream = fileToPoke.Open(FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
|
||||
stream.Close();
|
||||
if (journals.Any())
|
||||
{
|
||||
FileInfo fileToPoke = GetJournalFilesOrdered(journalFolder).Last();
|
||||
|
||||
using FileStream stream = fileToPoke.Open(FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
|
||||
stream.Close();
|
||||
}
|
||||
System.Threading.Thread.Sleep(250);
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user