You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2022/04/06 14:03:44 UTC

[whimsy] branch master updated: fix count

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 40d211a1 fix count
40d211a1 is described below

commit 40d211a1d2f9a467a35db50b4cd266e199f9de6a
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Wed Apr 6 10:03:22 2022 -0400

    fix count
---
 www/members/non-participants.cgi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/members/non-participants.cgi b/www/members/non-participants.cgi
index 6f8525e4..2dc8545f 100755
--- a/www/members/non-participants.cgi
+++ b/www/members/non-participants.cgi
@@ -82,6 +82,7 @@ _html do
       matrix.each do |id, _name, first, missed|
         next unless id
 
+        count += 1
         status = current_status[id]
         next if @status and status != @status
 
@@ -99,7 +100,6 @@ _html do
               _td status
             end
           end
-          count += 1
         end
       end
     end