summaryrefslogtreecommitdiff
path: root/java/com/android/voicemail/impl
diff options
context:
space:
mode:
authortwyen <twyen@google.com>2017-12-14 10:45:14 -0800
committerCopybara-Service <copybara-piper@google.com>2017-12-14 11:17:31 -0800
commitfed46f5e2377e05b77a0490b4ee3b398c26ef658 (patch)
treeb2840b620bf1b769a78804e6cf2f7e60dbf2faed /java/com/android/voicemail/impl
parent857959157323d8bacb18a5edcfda30d88855a5e7 (diff)
Change dt for CVVM to 6
Bug: 70243393 Test: N/A PiperOrigin-RevId: 179064288 Change-Id: Id8b2e600ae00edbe2697932ad2d9fe78ea4430b5
Diffstat (limited to 'java/com/android/voicemail/impl')
-rw-r--r--java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java b/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java
index 5fc5e7092..0df639fcb 100644
--- a/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java
+++ b/java/com/android/voicemail/impl/sms/OmtpCvvmMessageSender.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google Inc. All Rights Reserved.
+ * Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@ public class OmtpCvvmMessageSender extends OmtpMessageSender {
private void sendCvvmMessage(String request, PendingIntent sentIntent) {
StringBuilder sb = new StringBuilder().append(request);
sb.append(OmtpConstants.SMS_PREFIX_SEPARATOR);
- appendField(sb, "dt", "15");
+ appendField(sb, "dt" /* device type */, "6" /* no VTT (transcription) support*/);
sendSms(sb.toString(), sentIntent);
}
}