容错处理

This commit is contained in:
xxq250 2023-04-26 16:03:06 +08:00
parent c90fc3d487
commit 9f4e201360
1 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
user = $redis_cache.hgetall("v2-owner-common:#{contributor["name"]}-#{contributor["email"]}")
user = $redis_cache.hgetall("v2-owner-common:#{contributor["name"] || contributor["login"]}-#{contributor["email"]}")
if user.blank?
json.contributions contributor["commits"]
json.login nil
json.login contributor["name"].to_s.downcase || contributor["login"].to_s.downcase
json.type nil
json.name contributor["name"].to_s.downcase
json.name contributor["name"].to_s.downcase || contributor["login"].to_s.downcase
json.email contributor["email"]
json.image_url User::Avatar.get_letter_avatar_url(contributor["name"])
json.image_url User::Avatar.get_letter_avatar_url(contributor["name"] || contributor["login"])
json.contribution_perc User.new(login: contributor["name"], mail: contributor["email"]).simple_contribution_perc(project, contributor["contribution_perc"])
else
json.contributions contributor["commits"]