Skip to content

Commit 24a5e05

Browse files
committed
fix(manager): restore decryption on refresh to fix field values
1 parent b3dd16b commit 24a5e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Servy.Manager/ViewModels/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ private async Task RefreshAllServicesAsync()
881881
var allServicesDict = allServicesList.ToDictionary(s => s.Name, StringComparer.OrdinalIgnoreCase);
882882

883883
// 3. Fetch all Repository DTOs in bulk
884-
var allDtosList = await _serviceRepository.GetAllAsync(false, token);
884+
var allDtosList = await _serviceRepository.GetAllAsync(true, token);
885885
var allDtosDict = allDtosList.ToDictionary(d => d.Name, StringComparer.OrdinalIgnoreCase);
886886

887887
// 4. Process in parallel using the semaphore

0 commit comments

Comments
 (0)