From 2588ad62ae2ee926ddd909e553a9089519afdc41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sat, 12 Dec 2015 09:19:55 +0000 Subject: Facebook: Don't set away users as idle If this will be reconsidered and enabled marking away people as idle again, then don't forget to add reseting the idle flag back to false. Because in previous commit it was set only to true and never back, even when user was online again. git-svn-id: http://svn.miranda-ng.org/main/trunk@15844 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/FacebookRM/src/json.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'protocols/FacebookRM/src') diff --git a/protocols/FacebookRM/src/json.cpp b/protocols/FacebookRM/src/json.cpp index 864c37ab90..de3aeee4e3 100644 --- a/protocols/FacebookRM/src/json.cpp +++ b/protocols/FacebookRM/src/json.cpp @@ -103,7 +103,6 @@ int facebook_json_parser::parse_buddy_list(std::string *data, List::List< facebo // Set contacts that were last active more than 1 minute ago as away if (current->status_id == ID_STATUS_ONLINE && current->last_active > 0 && (now - current->last_active) > 60) { current->status_id = ID_STATUS_AWAY; - current->idle = true; } // Facebook is not sending this info anymore, it should be removed -- cgit v1.2.3