File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 33
33
from zulipterminal .server_url import near_message_url
34
34
from zulipterminal .ui_tools .tables import render_table
35
35
from zulipterminal .urwid_types import urwid_MarkupTuple , urwid_Size
36
+ from zulipterminal .widget import find_widget_type
36
37
37
38
38
39
if typing .TYPE_CHECKING :
@@ -729,6 +730,11 @@ def main_view(self) -> List[Any]:
729
730
"/me" , f"<strong>{ self .message ['sender_full_name' ]} </strong>" , 1
730
731
)
731
732
733
+ if self .message .get ("submessages" ):
734
+ widget_type = find_widget_type ( # noqa: F841
735
+ self .message .get ("submessages" )
736
+ )
737
+
732
738
# Transform raw message content into markup (As needed by urwid.Text)
733
739
content , self .message_links , self .time_mentions = self .transform_content (
734
740
self .message ["content" ], self .model .server_url
You can’t perform that action at this time.
0 commit comments