Windows Overlay: Fix icon refresh

The condition for the refresh was inverse of what it should have been.
This commit is contained in:
Daniel Molkentin 2014-11-03 20:46:35 +01:00
parent c34c8ff358
commit 19daff36b0

View file

@ -118,7 +118,7 @@ void RemotePathChecker::workerThreadLoop()
bool changed = false;
{ std::unique_lock<std::mutex> lock(_mutex);
auto &it = _cache[responsePath];
changed = it == state;
changed = (it != state);
it = state;
}
if (changed) {