mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2025-04-09 19:15:43 +02:00
Windows Overlay: Fix icon refresh
The condition for the refresh was inverse of what it should have been.
This commit is contained in:
parent
c34c8ff358
commit
19daff36b0
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user