Skip to content

Commit

Permalink
FIX_Reversed_Condition_in_Commit_fa35d75 (#1036)
Browse files Browse the repository at this point in the history
Correct reversed condition in function SVBONYBase::sendImage.
  • Loading branch information
jctk authored Feb 3, 2025
1 parent 7d53262 commit 5036ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indi-svbony/svbony_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ void SVBONYBase::sendImage(SVB_IMG_TYPE type, float duration)
SetCCDCapability(GetCCDCapability() | CCD_HAS_BAYER);
auto bayerString = getBayerString();
// Send if different
if (BayerTP[2].isNameMatch(bayerString))
if (!(BayerTP[2].isNameMatch(bayerString)))
{
BayerTP[2].setText(bayerString);
BayerTP.apply();
Expand Down

0 comments on commit 5036ddd

Please sign in to comment.