Skip to content
Snippets Groups Projects
Commit 0a0ba068 authored by Gilbert Gonzales's avatar Gilbert Gonzales
Browse files

CHUI-852 ([crashhunters] crash in...

CHUI-852 ([crashhunters] crash in LLNotificationsUI::LLScreenChannel::addToast): Crash is due to a gesture not loading while the user is shutting down the app. A notification saying that the gesture couldn't load is trying to display while the app is shutting down, which causes a crash.
parent 780fe4e3
No related branches found
No related tags found
No related merge requests found
...@@ -113,9 +113,11 @@ bool LLDelayedGestureError::doDialog(const LLErrorEntry &ent, bool uuid_ok) ...@@ -113,9 +113,11 @@ bool LLDelayedGestureError::doDialog(const LLErrorEntry &ent, bool uuid_ok)
} }
} }
if(!LLApp::isQuitting())
LLNotificationsUtil::add(ent.mNotifyName, args); {
LLNotificationsUtil::add(ent.mNotifyName, args);
}
return true; return true;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment