Skip to content

Commit aa300fe

Browse files
committed
Fix missing new cache to totals
1 parent 138045f commit aa300fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matterircd_complete.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1419,7 +1419,7 @@ sub stats_show {
14191419
$channels = keys %{$cache{'REPLIED'}};
14201420
Irssi::print("[matterircd_complete] ${entries} entries across ${channels} channels for threads replied to cache (${REPLIED_CACHE_STATS} updates)");
14211421

1422-
my $total_updates = $MSGTHREADID_CACHE_STATS + $NICKNAMES_CACHE_STATS + $REPLIED_CACHE_STATS;
1422+
my $total_updates = $MSGTHREADID_CACHE_STATS + $MSGTHREAD_POST_ID_CACHE_STATS + $NICKNAMES_CACHE_STATS + $REPLIED_CACHE_STATS;
14231423
Irssi::print("[matterircd_complete] \x03%GSaved total of ${total} entries in the cache (${total_updates} total updates)…");
14241424
}
14251425
Irssi::command_bind('matterircd_complete_stats', 'stats_show');

0 commit comments

Comments
 (0)