pidgin/pidgin

Remove redundant check

2021-02-26, Arkadiy Illarionov
88c8797ac9cc
Parents 8895f21c7730
Children 4682777df311
Remove redundant check

It's already checked earlier.
https://reviews.imfreedom.org/r/531/ follow-up.

Testing Done:
Compile.

Reviewed at https://reviews.imfreedom.org/r/535/
--- a/pidgin/gtkblist.c Fri Feb 26 00:18:18 2021 -0600
+++ b/pidgin/gtkblist.c Fri Feb 26 18:41:33 2021 -0600
@@ -2121,8 +2121,7 @@
for (im = values; *im != NULL; im++)
{
- if (purple_strequal(field, "X-JABBER"))
- jabbers = g_list_append(jabbers, g_strdup(*im));
+ jabbers = g_list_append(jabbers, g_strdup(*im));
}
g_strfreev(values);