diff --git a/shell/platform/tizen/channels/platform_channel.cc b/shell/platform/tizen/channels/platform_channel.cc index 5672bd73ef908..263108f214a3f 100644 --- a/shell/platform/tizen/channels/platform_channel.cc +++ b/shell/platform/tizen/channels/platform_channel.cc @@ -148,7 +148,9 @@ void PlatformChannel::HandleMethodCall( } void PlatformChannel::SystemNavigatorPop() { - ui_app_exit(); + if (window_) { + ui_app_exit(); + } } void PlatformChannel::PlaySystemSound(const std::string& sound_type) {