Commit dee55690 authored by Dan Pascu's avatar Dan Pascu

Fixed copy/paste error

parent ddcefdf5
...@@ -189,7 +189,7 @@ class SessionWidget(base_class, ui_class): ...@@ -189,7 +189,7 @@ class SessionWidget(base_class, ui_class):
self.mute_button.hide() self.mute_button.hide()
self.address_label.setText(session.name or session.uri) self.address_label.setText(session.name or session.uri)
self.stream_info_label.session_type = session.type self.stream_info_label.session_type = session.type
self.stream_info_label.session_type = session.codec_info self.stream_info_label.codec_info = session.codec_info
self.latency_label.value = session.latency self.latency_label.value = session.latency
self.packet_loss_label.value = session.packet_loss self.packet_loss_label.value = session.packet_loss
self.tls_label.setVisible(bool(session.tls)) self.tls_label.setVisible(bool(session.tls))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment