-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6012168
commit fd0227c
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fd0227c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This basically does nothing since
LLFloaterNotificationsTabbed::getInstance();
callsLLFloaterReg::getTypedInstance()
which will always return an instance (and create one if it doesn't exist yet).fd0227c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Crash happens on a 'headless' client, and bufgsplat calims that floater was null. I can only assume that it's not building something.
fd0227c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At least line 243 should be
LLFloaterNotificationsTabbed* floater = LLFloaterReg::findTypedInstance<LLFloaterNotificationsTabbed>("notification_well_window");
then. Otherwise the check doesn't make sense.fd0227c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cause for this fixis this line in logs: LLFloaterReg::getInstance : Floater type: 'notification_well_window' not registered.
fd0227c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Admitedly it might be better to shutdown notifications somehow.