From a3f7e25fa6b7f8f440e961c2715cd77b71617e6e Mon Sep 17 00:00:00 2001 From: RoyceDa Date: Thu, 12 Feb 2026 12:23:42 +0200 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D0=BE=D1=82=D0=B2=D0=B5=D1=82=20=D0=BE=D1=82=20?= =?UTF-8?q?=D1=81=D0=B5=D1=80=D0=B2=D0=B5=D1=80=D0=B0,=20=D0=B3=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BC=D0=B0=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0=BA?= =?UTF-8?q?=D0=B0=D1=8F=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ src/main/java/im/rosetta/api/dto/UpdateResponse.java | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6932c26..f875aa9 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,5 @@ Thumbs.db .env.local *.log *.jar +build/kernel +build/packs diff --git a/src/main/java/im/rosetta/api/dto/UpdateResponse.java b/src/main/java/im/rosetta/api/dto/UpdateResponse.java index b590816..c37a588 100644 --- a/src/main/java/im/rosetta/api/dto/UpdateResponse.java +++ b/src/main/java/im/rosetta/api/dto/UpdateResponse.java @@ -13,7 +13,7 @@ public record UpdateResponse( // Требуется ли обновление ядра. @JsonProperty("kernel_update_required") boolean kernelUpdateRequired, // Ссылка на пакет обновления приложения. - @JsonProperty("sevice_pack_url") String servicePackUrl, + @JsonProperty("service_pack_url") String servicePackUrl, // Ссылка на обновление ядра (если требуется). @JsonProperty("kernel_url") String kernelUrl ) {