mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Fix null entry bug in flag editor (#2468)
This commit is contained in:
parent
767891a1e3
commit
3f995f4ff0
@ -240,6 +240,9 @@ namespace Bloxstrap.UI.Elements.Menu.Pages
|
||||
if (App.FastFlags.Prop.ContainsKey(pair.Key) && !overwriteConflicting)
|
||||
continue;
|
||||
|
||||
if (pair.Value is null)
|
||||
continue;
|
||||
|
||||
var val = pair.Value.ToString();
|
||||
|
||||
if (val is null)
|
||||
|
Loading…
Reference in New Issue
Block a user