Skip to content

Commit

Permalink
event["type"] is not a human type
Browse files Browse the repository at this point in the history
  • Loading branch information
edk0 committed Jun 4, 2024
1 parent adf31f1 commit 637f3d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/schedule/feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from models import event_year
from models.user import User
from models.cfp import Proposal
from models.cfp import Proposal, HUMAN_CFP_TYPES

from ..common import feature_flag, feature_enabled, json_response
from .schedule_xml import export_frab
Expand Down Expand Up @@ -42,8 +42,8 @@ def _format_event_description(event):
if event["map_link"]:
venue_str = f'{venue_str} ({event["map_link"]})'
footer_block.append(f'Venue: {venue_str}')
if event["type"] in ("talk", "lightning talk", "performance") and event["video_privacy"] != "public":
footer_block.append(f'This {event["type"]} will not be recorded.')
if event["type"] in ("talk", "lightningtalk", "performance") and event["video_privacy"] != "public":
footer_block.append(f'This {HUMAN_CFP_TYPES[event["type"]]} will not be recorded.')
if footer_block:
description += '\n\n' + '\n'.join(footer_block)

Expand Down

0 comments on commit 637f3d7

Please sign in to comment.