Skip to content

Commit

Permalink
Merge pull request #562 from OpenUpSA/fix/question-committee-no-name
Browse files Browse the repository at this point in the history
Fallback for committee question with no asked by name
  • Loading branch information
paulmwatson authored Aug 14, 2024
2 parents 5eac6e9 + 55d1e84 commit d219996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pmg/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ def committee_question(question_id):
if question["asked_by_name"]:
asked_by_name = question["asked_by_name"]
else:
asked_by_name = ""
asked_by_name = "[UNKNOWN]"
social_summary = (
"A question to the "
+ question["question_to_name"]
Expand Down

0 comments on commit d219996

Please sign in to comment.