File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -713,7 +713,10 @@ def select(self, *attributes: str) -> SelectFilter:
713713 """
714714 select = SelectFilter ()
715715 for attribute in attributes :
716- select .append (self .protocol .convert_case (attribute ))
716+ attribute = self .protocol .convert_case (attribute )
717+ if attribute .lower () in ["meetingmessagetype" ]:
718+ attribute = f"{ self .protocol .keyword_data_store ['event_message_type' ]} /{ attribute } "
719+ select .append (attribute )
717720 return select
718721
719722 def expand (self , relationship : str , select : Optional [SelectFilter ] = None ) -> ExpandFilter :
Original file line number Diff line number Diff line change @@ -862,7 +862,7 @@ def _get_mapping(self, attribute):
862862 return None
863863
864864 def _get_select_mapping (self , attribute ):
865- if attribute in ["meetingMessageType" ]:
865+ if attribute . lower () in ["meetingMessageType" ]:
866866 return (
867867 f"{ self .protocol .keyword_data_store ['event_message_type' ]} /{ attribute } "
868868 )
You can’t perform that action at this time.
0 commit comments