Merge pull request #314 from vector-im/kegan/graceful-no-voip
Add unsupported suffix on Ongoing conf notification if conf calls are…pull/335/head
commit
842d6b6c2c
|
@ -230,9 +230,13 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
var conferenceCallNotification = null;
|
var conferenceCallNotification = null;
|
||||||
if (this.state.displayConfCallNotification) {
|
if (this.state.displayConfCallNotification) {
|
||||||
|
var supportedText;
|
||||||
|
if (!MatrixClientPeg.get().supportsVoip()) {
|
||||||
|
supportedText = " (unsupported)";
|
||||||
|
}
|
||||||
conferenceCallNotification = (
|
conferenceCallNotification = (
|
||||||
<div className="mx_RoomView_ongoingConfCallNotification" onClick={this.onConferenceNotificationClick}>
|
<div className="mx_RoomView_ongoingConfCallNotification" onClick={this.onConferenceNotificationClick}>
|
||||||
Ongoing conference call
|
Ongoing conference call {supportedText}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue