Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion zulipterminal/ui_tools/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
match_stream,
match_user,
)
from zulipterminal.platform_code import PLATFORM
from zulipterminal.server_url import near_message_url
from zulipterminal.ui_tools.boxes import MessageBox, PanelSearchBox
from zulipterminal.ui_tools.buttons import (
Expand Down Expand Up @@ -1113,7 +1114,13 @@ def __init__(
else []
)
contents = [
("Application", [("Zulip Terminal", zt_version)]),
(
"Application",
[
("Zulip Terminal", zt_version),
("Platform detected", PLATFORM if PLATFORM else "Invalid platform"),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This condition shouldn't arise - again, check the values of PLATFORM.

],
),
("Server", [("Version", server_version)] + self.feature_level_content),
(
"Application Configuration",
Expand Down