bug fix: Fix missing return statement in get_filter_li().

This was regressed in 89e17e1aee.

At least one of the symptoms was that we weren't updating the
activity list properly.  This could also cause tracebacks in
compose fade logic.
This commit is contained in:
Steve Howell
2017-03-20 09:49:19 -07:00
parent b701062d16
commit 29412cd06b

View File

@@ -79,7 +79,7 @@ function get_user_list_item(user_id) {
function get_filter_li(user_ids_string) {
if (name.indexOf(",") < 0) {
get_user_list_item(user_ids_string);
return get_user_list_item(user_ids_string);
}
return $("li.group-pms-sidebar-entry[data-user-ids='" + user_ids_string + "']");
}