commit | 5ffc4ce6054ee5a12c4d424699141e4187e0dc7a | [log] [tgz] |
---|---|---|
author | allenwtsu <allenwtsu@google.com> | Mon Feb 08 17:42:05 2021 +0800 |
committer | allenwtsu <allenwtsu@google.com> | Mon Feb 08 18:58:09 2021 +0800 |
tree | 1c2ffcdf2705370a65e7fefa7beeba729e27e310 | |
parent | 65b05358895376109ae34eb0f8196703a0041302 [diff] |
[RCS] Use correct config for PLANI Bug: 179515437 Test: manual Change-Id: I84507da69a1800702311684d3bd2787b0a2f2b02
diff --git a/testapps/TestRcsApp/aosp_test_rcsclient/src/com/android/libraries/rcs/simpleclient/protocol/sip/SipUtils.java b/testapps/TestRcsApp/aosp_test_rcsclient/src/com/android/libraries/rcs/simpleclient/protocol/sip/SipUtils.java index 5d0b718..cad250a 100644 --- a/testapps/TestRcsApp/aosp_test_rcsclient/src/com/android/libraries/rcs/simpleclient/protocol/sip/SipUtils.java +++ b/testapps/TestRcsApp/aosp_test_rcsclient/src/com/android/libraries/rcs/simpleclient/protocol/sip/SipUtils.java
@@ -157,7 +157,7 @@ if (configuration.getPlaniHeader() != null) { request.setHeader( sHeaderFactory.createHeader(PLANI_HEADER_NAME, - configuration.getPaniHeader())); + configuration.getPlaniHeader())); } } catch (InvalidArgumentException e) { // Nothing to do here @@ -295,7 +295,7 @@ } if (configuration.getPlaniHeader() != null) { response.setHeader( - sHeaderFactory.createHeader(PLANI_HEADER_NAME, configuration.getPaniHeader())); + sHeaderFactory.createHeader(PLANI_HEADER_NAME, configuration.getPlaniHeader())); } return response; }