ios: make sure our CXProvider is invalidated when CallKit is disabled
This commit is contained in:
parent
070a34e30d
commit
e1b989e99b
|
@ -1,5 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* Copyright @ 2018-present Atlassian Pty Ltd
|
* Copyright @ 2019-present 8x8, Inc.
|
||||||
|
* Copyright @ 2018-2019 Atlassian Pty Ltd
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -53,6 +54,7 @@ import Foundation
|
||||||
didSet {
|
didSet {
|
||||||
if enabled == false {
|
if enabled == false {
|
||||||
provider.setDelegate(nil, queue: nil)
|
provider.setDelegate(nil, queue: nil)
|
||||||
|
provider.invalidate()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,3 +189,4 @@ import Foundation
|
||||||
return update
|
return update
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue