mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix null check issue
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
parent
9052f7b96e
commit
537c03f2d7
1 changed files with 2 additions and 0 deletions
|
|
@ -43,6 +43,8 @@ public class ThemeData
|
|||
{
|
||||
if (left is null && right is null)
|
||||
return true;
|
||||
if (left is null || right is null)
|
||||
return false;
|
||||
return left.Equals(right);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue