mirror of https://github.com/quasar/Quasar.git
Merge pull request #157 from yankejustin/Fix
Fixed server crash on FrmKeylogger
This commit is contained in:
commit
f9b0c17850
|
@ -55,7 +55,10 @@ private void btnGetLogs_Click(object sender, EventArgs e)
|
|||
|
||||
private void lstLogs_ItemActivate(object sender, EventArgs e)
|
||||
{
|
||||
wLogViewer.Navigate(Path.Combine(_path, lstLogs.SelectedItems[0].Text));
|
||||
if (lstLogs.SelectedItems != null && lstLogs.SelectedItems.Count > 0)
|
||||
{
|
||||
wLogViewer.Navigate(Path.Combine(_path, lstLogs.SelectedItems[0].Text));
|
||||
}
|
||||
}
|
||||
|
||||
private void FrmKeylogger_FormClosing(object sender, FormClosingEventArgs e)
|
||||
|
@ -86,4 +89,4 @@ private void lstLogs_ColumnClick(object sender, ColumnClickEventArgs e)
|
|||
lstLogs.Sort();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue