Skip to content
This repository has been archived by the owner on Aug 4, 2019. It is now read-only.

Commit

Permalink
CallCoordinator: fixing issues with updating call. Closes #211
Browse files Browse the repository at this point in the history
  • Loading branch information
dvor committed Aug 11, 2016
1 parent 51b88ae commit 7459985
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Antidote/CallCoordinator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,11 @@ private extension CallCoordinator {
switch change {
case .Initial:
break
case .Update(_, let deletions, let insertions, _):
case .Update(_, let deletions, _, let modifications):
if deletions.count > 0 {
self.declineCall(callWasRemoved: true)
}
else if insertions.count > 0 {
else if modifications.count > 0 {
self.activeCallWasUpdated()
}
case .Error(let error):
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]
### Fixed
- Issue with calles not updating when answered.

## [0.10.4] - 2016-08-04
### Added
Expand Down

0 comments on commit 7459985

Please sign in to comment.