Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion flutter/shell/platform/tizen/channels/text_input_channel.cc
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ void TextInputChannel::HandleMethodCall(
if (client_config.IsNull()) {
result->Error(kBadArgumentError,
"Could not set client, missing arguments.");
return;
}

client_id_ = client_id_json.GetInt();
Expand Down Expand Up @@ -257,7 +258,7 @@ void TextInputChannel::HandleMethodCall(
TextRange(selection_base_value, selection_extent_value));

auto composing_base = args.FindMember(kComposingBaseKey);
auto composing_extent = args.FindMember(kComposingBaseKey);
auto composing_extent = args.FindMember(kComposingExtentKey);
int composing_base_value = composing_base != args.MemberEnd()
? composing_base->value.GetInt()
: -1;
Expand Down