From 849aeb17cccf8ece19655294e4d51d343141069e Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Sun, 28 Nov 2021 06:09:49 +0100 Subject: [PATCH] Now whole repository tab refreshes when deleting a branch --- src/main/kotlin/app/git/GitManager.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/git/GitManager.kt b/src/main/kotlin/app/git/GitManager.kt index 8114dcf..8307f7d 100644 --- a/src/main/kotlin/app/git/GitManager.kt +++ b/src/main/kotlin/app/git/GitManager.kt @@ -233,7 +233,7 @@ class GitManager @Inject constructor( fun deleteBranch(branch: Ref) = managerScope.launch { safeProcessing { branchesManager.deleteBranch(safeGit, branch) - coLoadLog() + refreshRepositoryInfo() } }