You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case someone is affected by it, the server only sends a notification upon startup and remains silent thereafter. I raised a ticket, we agreed on a solution but there is no guarantee as to when an update will be available.
The file in question is common/SoapySSDPEndpoint.cpp, the changes as follows:
const auto timeNow = std::chrono::high_resolution_clock::now();
- const auto triggerExpired = timeNow + std::chrono::seconds(TRIGGER_TIMEOUT_SECONDS);
+ const auto triggerInterval = std::chrono::seconds(TRIGGER_TIMEOUT_SECONDS);
//check trigger for periodic search
- if (this->periodicSearchEnabled and data->lastTimeSearch > triggerExpired)
+ if (this->periodicSearchEnabled and data->lastTimeSearch + triggerInterval <= timeNow)
//check trigger for periodic notify
- if (this->periodicNotifyEnabled and data->lastTimeNotify > triggerExpired)
+ if (this->periodicNotifyEnabled and data->lastTimeNotify + triggerInterval <= timeNow)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
In case someone is affected by it, the server only sends a notification upon startup and remains silent thereafter. I raised a ticket, we agreed on a solution but there is no guarantee as to when an update will be available.
The file in question is common/SoapySSDPEndpoint.cpp, the changes as follows:
Beta Was this translation helpful? Give feedback.
All reactions