We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea54484 commit f797e51Copy full SHA for f797e51
packages/desktop_webview_window/windows/web_view_window_plugin.cc
@@ -235,12 +235,10 @@ void WebviewWindowPlugin::HandleMethodCall(
235
auto* arguments = std::get_if<flutter::EncodableMap>(method_call.arguments());
236
auto window_id = arguments->at(flutter::EncodableValue("viewId")).LongValue();
237
if (!windows_.count(window_id)) {
238
- std::cout << "webview window id not found" << std::endl;
239
result->Error("0", "can not find webview window for id");
240
return;
241
}
242
if (!windows_[window_id]->GetWebView()) {
243
- std::cout << "Webview not ready" << std::endl;
244
result->Error("0", "webview window not ready");
245
246
0 commit comments