We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e6674a commit 1d32279Copy full SHA for 1d32279
Refresher/UI/PipelineForm.cs
@@ -505,6 +505,12 @@ private void OnLog(RefresherLog log)
505
{
506
Application.Instance.Invoke(() =>
507
508
+ // somehow getting hit on sentry?
509
+ // id REFRESHER-88
510
+ // ReSharper disable once ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract
511
+ if (this._messages == null)
512
+ return;
513
+
514
this._messages.Items.Add($"[{log.Level}] [{log.Category}] {log.Content}");
515
516
// automatically scroll to the bottom by highlighting the last item temporarily
0 commit comments