diff options
| author | 2018-03-08 20:24:36 +0000 | |
|---|---|---|
| committer | 2018-03-08 20:24:36 +0000 | |
| commit | eda2ebd206ca6fd63cd2fbab0d4ebcd7ba42d798 (patch) | |
| tree | 0993ec49898f08471e807829f1c2ef4b289dab68 | |
| parent | 5bb27fbf622de023fd83b9ee5b5540c998ce53a3 (diff) | |
| parent | 38f1b7d112b3f6dc317ae46527ad48403a8e1124 (diff) | |
Merge "Ensure start of call properties are propagated to RemoteConnection." into pi-dev
| -rw-r--r-- | telecomm/java/android/telecom/RemoteConnectionService.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionService.java b/telecomm/java/android/telecom/RemoteConnectionService.java index 59ce590858ee..bb4b483de326 100644 --- a/telecomm/java/android/telecom/RemoteConnectionService.java +++ b/telecomm/java/android/telecom/RemoteConnectionService.java @@ -93,6 +93,10 @@ final class RemoteConnectionService { // failure on the providing end, so immediately mark it destroyed connection.setDestroyed(); } + connection.setStatusHints(parcel.getStatusHints()); + connection.setIsVoipAudioMode(parcel.getIsVoipAudioMode()); + connection.setRingbackRequested(parcel.isRingbackRequested()); + connection.putExtras(parcel.getExtras()); } } |