summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/NewXstatusNotify/src/main.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/NewXstatusNotify/src/main.cpp b/plugins/NewXstatusNotify/src/main.cpp
index 52b00640c3..7d5822e8c9 100644
--- a/plugins/NewXstatusNotify/src/main.cpp
+++ b/plugins/NewXstatusNotify/src/main.cpp
@@ -762,19 +762,6 @@ int ContactStatusChanged(WPARAM wParam, LPARAM lParam)
strcpy(szProto, hlpProto);
WORD myStatus = (WORD)CallProtoService(szProto, PS_GETSTATUS, 0, 0);
- if (newStatus == ID_STATUS_OFFLINE && oldStatus > ID_STATUS_OFFLINE && !ServiceExists("LastSeenUserDetails")) { // if SeenPlugin not installed write Last Seen info
- SYSTEMTIME systime;
- GetLocalTime(&systime);
-
- db_set_w(hContact, "SeenModule", "Year", systime.wYear);
- db_set_w(hContact, "SeenModule", "Month", systime.wMonth);
- db_set_w(hContact, "SeenModule", "Day", systime.wDay);
- db_set_w(hContact, "SeenModule", "Hours", systime.wHour);
- db_set_w(hContact, "SeenModule", "Minutes", systime.wMinute);
- db_set_w(hContact, "SeenModule", "Seconds", systime.wSecond);
- db_set_w(hContact, "SeenModule", "Status", oldStatus);
- }
-
if (strcmp(szProto, szMetaModuleName) == 0) { //this contact is Meta
HANDLE hSubContact = (HANDLE)CallService(MS_MC_GETMOSTONLINECONTACT, (WPARAM)hContact, 0);
hlpProto = GetContactProto(hSubContact);