dev fix download with cyrrilic symbols
Test Workflow / test (push) Has been cancelled

This commit is contained in:
2026-05-22 14:55:51 +07:00
parent b143b29a78
commit 71e410aef5
@@ -159,6 +159,8 @@ public class DockViewService {
List<DockViewResponse> history = new ArrayList<>(); List<DockViewResponse> history = new ArrayList<>();
for (DockView dockView: dockViews) { for (DockView dockView: dockViews) {
locale = locale == null ? "en": locale;
String country = locale.equals("en") ? dockView.getGeoNameEn(): dockView.getGeoNameRu(); String country = locale.equals("en") ? dockView.getGeoNameEn(): dockView.getGeoNameRu();
LocalDateTime createdAt = dockView.getCreatedAt(); LocalDateTime createdAt = dockView.getCreatedAt();