Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit d5f6d87

Browse files
Fixing field usage
1 parent 52f315c commit d5f6d87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/ProjectWindowInterface.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ private static void Repository_GitStatusCacheUpdated(CacheUpdateEvent cacheUpdat
5858

5959
private static void Repository_GitLockCacheUpdated(CacheUpdateEvent cacheUpdateEvent)
6060
{
61-
if (!gitStatusUpdateEvent.Equals(cacheUpdateEvent))
61+
if (!gitLocksUpdateEvent.Equals(cacheUpdateEvent))
6262
{
6363
new ActionTask(CancellationToken.None, () =>
6464
{
65-
gitStatusUpdateEvent = cacheUpdateEvent;
65+
gitLocksUpdateEvent = cacheUpdateEvent;
6666
OnLocksUpdate(repository.CurrentLocks);
6767
})
6868
{ Affinity = TaskAffinity.UI }.Start();

0 commit comments

Comments
 (0)