Loading src/com/android/server/telecom/CallStreamingController.java +3 −3 Original line number Diff line number Diff line Loading @@ -110,12 +110,12 @@ public class CallStreamingController extends CallsManagerListenerBase { CompletableFuture<VoipCallTransactionResult> future = new CompletableFuture<>(); if (mCallsManager.getCallStreamingController().isStreaming()) { future.complete(new VoipCallTransactionResult( VoipCallTransactionResult.RESULT_SUCCEED, null)); } else { future.complete(new VoipCallTransactionResult( VoipCallTransactionResult.RESULT_FAILED, "STREAMING_FAILED_ALREADY_STREAMING")); } else { future.complete(new VoipCallTransactionResult( VoipCallTransactionResult.RESULT_SUCCEED, null)); } return future; Loading Loading
src/com/android/server/telecom/CallStreamingController.java +3 −3 Original line number Diff line number Diff line Loading @@ -110,12 +110,12 @@ public class CallStreamingController extends CallsManagerListenerBase { CompletableFuture<VoipCallTransactionResult> future = new CompletableFuture<>(); if (mCallsManager.getCallStreamingController().isStreaming()) { future.complete(new VoipCallTransactionResult( VoipCallTransactionResult.RESULT_SUCCEED, null)); } else { future.complete(new VoipCallTransactionResult( VoipCallTransactionResult.RESULT_FAILED, "STREAMING_FAILED_ALREADY_STREAMING")); } else { future.complete(new VoipCallTransactionResult( VoipCallTransactionResult.RESULT_SUCCEED, null)); } return future; Loading