remove online list

This commit is contained in:
NYAN CAT 2019-09-02 08:01:33 +03:00
parent 4d7b6994a6
commit 85a8fcd0f9

View File

@ -125,21 +125,18 @@ namespace Server.Connection
try try
{ {
lock (Settings.Listview1Lock) lock (Settings.LockListviewClients)
LV.Remove(); LV.Remove();
if (LV2 != null) if (LV2 != null)
{ {
lock (Settings.Listview3Lock) lock (Settings.LockListviewThumb)
LV2.Remove(); LV2.Remove();
} }
} }
catch { } catch { }
})); }));
lock (Settings.Online)
Settings.Online.Remove(this);
} }
try try