forked from mirrors/linphone-iphone
Make canceled meetings unclicable in meetings list
This commit is contained in:
parent
aa10440bc9
commit
03f1ca2a4a
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ struct MeetingsFragment: View {
|
|||
.shadow(color: .black.opacity(0.2), radius: 4)
|
||||
.onTapGesture {
|
||||
withAnimation {
|
||||
if let meetingModel = model.model {
|
||||
if let meetingModel = model.model, meetingModel.confInfo.state != ConferenceInfo.State.Cancelled {
|
||||
meetingViewModel.loadExistingMeeting(meeting: meetingModel)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue