mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 10:17:22 +01:00
Fix crash if mod has no description (shouldn't happen though).
This commit is contained in:
parent
3944601c99
commit
ba01798ae9
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ namespace Penumbra.UI
|
|||
|
||||
private void DrawAboutTab()
|
||||
{
|
||||
if( !_editMode && Meta.Description?.Length == 0 )
|
||||
if( !_editMode && ( Meta.Description?.Length ?? 0 ) == 0 )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue