From: Julius Bünger Date: Fri, 6 Apr 2018 08:44:05 +0000 (+0200) Subject: rps service fix: send the updated view to client X-Git-Tag: v0.11.0pre66~122^2~13 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=08ded5f88e6369ac78db4bb26bcf215f8282f27c;p=oweals%2Fgnunet.git rps service fix: send the updated view to client --- diff --git a/src/rps/gnunet-service-rps.c b/src/rps/gnunet-service-rps.c index 5b7f78b3f..3416fc10c 100644 --- a/src/rps/gnunet-service-rps.c +++ b/src/rps/gnunet-service-rps.c @@ -2285,7 +2285,6 @@ hist_update (void *cls, { unsigned int i; - clients_notify_view_update(); for (i = 0; i < num_peers; i++) { (void) insert_in_view (&ids[i]); @@ -2293,6 +2292,7 @@ hist_update (void *cls, "+%s\t(hist)", GNUNET_i2s_full (ids)); } + clients_notify_view_update(); }