Skip to content

Commit

Permalink
bugfix diff num of count displays
Browse files Browse the repository at this point in the history
  • Loading branch information
Gorddd committed Jul 15, 2023
1 parent c8d2226 commit 44c7660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/Core/Services/Concrete/DisplayService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void InitializeActualDisplays(IEnumerable<Display> actualDisplays)
(s, a) => new { Storage = s, Actual = a })
.Any(sa => !sa.Storage.Equals(sa.Actual));

if (hasAnyDiff)
if (hasAnyDiff || actualDisplays.Count() != storageDisplays.Count())
{
InitializeActualDisplays(actualDisplays);

Expand Down

0 comments on commit 44c7660

Please sign in to comment.