Fix post dial for remote connections

Use the correct callback (onPostDialChar instead of onPostDialWait).
This fixes a bug where every remote call would prompt the user
to send tones after the call became active.

BUG: 21004101
Change-Id: I1656a4266d0028ef29494a3cee169180267e16cd
This commit is contained in:
Sailesh Nepal
2015-05-14 17:39:41 -07:00
parent 5bcbf857d1
commit 40451b3977

View File

@@ -960,7 +960,7 @@ public final class RemoteConnection {
record.getHandler().post(new Runnable() {
@Override
public void run() {
callback.onPostDialWait(connection, String.valueOf(nextChar));
callback.onPostDialChar(connection, nextChar);
}
});
}