Skip to content

Commit

Permalink
Check if we are already loading config, in this case we should not re…
Browse files Browse the repository at this point in the history
…-save to config again
  • Loading branch information
knro committed Mar 3, 2024
1 parent 563b4e9 commit e76b3c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/indibase/indifilterinterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ bool FilterInterface::processText(const char *dev, const char *name, char *texts
IUUpdateText(FilterNameTP, texts, names, n);
FilterNameTP->s = IPS_OK;

if (SetFilterNames() == true)
if (m_defaultDevice->isConfigLoading() || SetFilterNames() == true)
{
IDSetText(FilterNameTP, nullptr);
return true;
Expand Down

0 comments on commit e76b3c5

Please sign in to comment.