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

Commit b2b22da

Browse files
Correcting statement to check status of initialization
1 parent 484d6a9 commit b2b22da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ProjectWindowInterface : AssetPostprocessor
2626
private static CacheUpdateEvent lastRepositoryStatusChangedEvent;
2727
private static CacheUpdateEvent lastLocksChangedEvent;
2828
private static IRepository Repository { get { return manager != null ? manager.Environment.Repository : null; } }
29-
private static bool IsInitialized { get { return Repository != null && Repository.CurrentRemote.HasValue; } }
29+
private static bool IsInitialized { get { return Repository != null; } }
3030

3131
public static void Initialize(IApplicationManager theManager)
3232
{

0 commit comments

Comments
 (0)