## Description: add some description ## Origin/Author: add some origin or author ## Bug: bug URL Index: libtorrent-rasterbar-0.15.3/src/torrent_info.cpp =================================================================== --- libtorrent-rasterbar-0.15.3.orig/src/torrent_info.cpp 2010-08-31 23:10:56.000000000 -0400 +++ libtorrent-rasterbar-0.15.3/src/torrent_info.cpp 2010-10-04 19:54:45.000000000 -0400 @@ -395,10 +395,10 @@ { // if we're a seed and we haven't sent a completed // event, we need to let this announce through - if (is_seed && !complete_sent) return true; + bool need_send_complete = is_seed && !complete_sent; return now >= next_announce - && now >= min_announce + && (now >= min_announce || need_send_complete) && (fails < fail_limit || fail_limit == 0) && !updating; }