You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2021/04/06 23:15:05 UTC

[whimsy] branch master updated: Better fix for crash

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

sebb 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 7173995  Better fix for crash
7173995 is described below

commit 717399528d8f7c549757afdeb62d3c01d56492fb
Author: Sebb <se...@apache.org>
AuthorDate: Wed Apr 7 00:14:55 2021 +0100

    Better fix for crash
---
 www/roster/models/committee.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www/roster/models/committee.rb b/www/roster/models/committee.rb
index 34d24a8..b4c0df9 100644
--- a/www/roster/models/committee.rb
+++ b/www/roster/models/committee.rb
@@ -58,7 +58,8 @@ class Committee
       info[:role] = 'PMC member'
       next if pmc.ownerids.include?(key) # skip the rest (expensive) if person is in the owner group
       person = ASF::Person[key]
-      if analysePrivateSubs && person # in case of missing entry (e.g. renamed uid)
+      next unless person  # in case of missing entry (e.g. renamed uid)
+      if analysePrivateSubs
         # Analyse the subscriptions, matching against canonicalised personal emails
         allMail = person.all_mail.map{|m| ASF::Mail.to_canonical(m.downcase)}
         # pSubs is already downcased