Fix exception when logging out of a site

This commit is contained in:
Timothy Baldridge 2021-09-29 16:49:34 -06:00
parent 5736102809
commit 3baccc4e85

View File

@ -56,7 +56,7 @@ namespace Wabbajack.App.Screens
private void Pulse(object sender, FileSystemEventArgs e)
{
_fileSystemEvents.OnNext(e.Name?.ToAbsolutePath() ?? default);
_fileSystemEvents.OnNext(e.FullPath?.ToAbsolutePath() ?? default);
}
}
}