From c23e6120c820d510e0ab5b10836b5f3e87b3075f Mon Sep 17 00:00:00 2001
From: Ophestra Umiker <cat@ophivana.moe>
Date: Sun, 30 Jun 2024 02:54:31 +0900
Subject: [PATCH] rpcfetch: fix profile activity label pending text

Typo, instead of setting profileStatusT the second statement was supposed to set profileActT.

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
---
 fetch/ui.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fetch/ui.go b/fetch/ui.go
index d8b4d20..d97db01 100644
--- a/fetch/ui.go
+++ b/fetch/ui.go
@@ -412,7 +412,7 @@ func failureState(ok bool) {
 		statusText.SetText("Retrying in 5 seconds...")
 		profileStatusB.FillColor = colornames.Darkred
 		profileStatusT.SetText("Disconnected")
-		profileStatusT.SetText("Pending...")
+		profileActT.SetText("Pending...")
 		profileT.Hide()
 	}
 }