Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit d652f34

Browse files
committed
Send nullptr return value
1 parent 05e075c commit d652f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/platform/linux/fl_platform_plugin.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ static FlMethodResponse* system_intitialization_complete(
260260
FlPlatformPlugin* self,
261261
FlMethodCall* method_call) {
262262
self->app_initialization_complete = TRUE;
263-
return nullptr;
263+
return FL_METHOD_RESPONSE(fl_method_success_response_new(nullptr));
264264
}
265265

266266
// Called when Flutter wants to exit the application.

0 commit comments

Comments
 (0)