Skip to content

Commit

Permalink
Fix OSS compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieucarbou committed Dec 28, 2024
1 parent 27d67ca commit 008fc20
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Website.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1357,5 +1357,9 @@ void YaSolR::Website::resetPID() {
}

bool YaSolR::Website::pidCharts() const {
#ifdef APP_MODEL_PRO
return _pidView.optional().value_or(false);
#else
return false;
#endif
}

0 comments on commit 008fc20

Please sign in to comment.