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

Commit df86288

Browse files
Fixing reference to GitLogCache
1 parent 1907d34 commit df86288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ private void RefreshLog()
214214
private void OnLogUpdate(List<GitLogEntry> entries)
215215
{
216216
Logger.Trace("OnLogUpdate");
217-
LogCache.Instance.Log = entries;
217+
GitLogCache.Instance.Log = entries;
218218
updated = true;
219219
Redraw();
220220
}
@@ -225,7 +225,7 @@ private void MaybeUpdateData()
225225
return;
226226
updated = false;
227227

228-
history = LogCache.Instance.Log;
228+
history = GitLogCache.Instance.Log;
229229

230230
if (history.Any())
231231
{

0 commit comments

Comments
 (0)