Remove old call from zephyr

Wed, 28 Sep 2022 03:50:52 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Wed, 28 Sep 2022 03:50:52 -0500
changeset 41751
0bba0ca12b0a
parent 41750
7ab7d79ac0c5
child 41752
3a7d151716fe

Remove old call from zephyr

It was hidden in `#ifdef WIN32`, so not sure if this ever is used, but it hides an outdated symbol from search results.

Testing Done:
None.

Reviewed at https://reviews.imfreedom.org/r/1853/

libpurple/protocols/zephyr/zephyr.c file | annotate | diff | comparison | revisions
--- a/libpurple/protocols/zephyr/zephyr.c	Wed Sep 28 00:18:12 2022 -0500
+++ b/libpurple/protocols/zephyr/zephyr.c	Wed Sep 28 03:50:52 2022 -0500
@@ -433,7 +433,9 @@
 		int one = 1;
 
 		ZGetLocations(&locations, &one);
-		serv_got_update(zgc, bname, 1, 0, 0, 0, 0);
+		purple_protocol_got_user_status(zephyr->account, bname, "available", 
+		                                NULL);
+		purple_protocol_got_user_idle(zephyr->account, bname, FALSE, 0);
 	}
 #else
 

mercurial