From 41f13e589c93c8cacbfd3b6161be35130b9ea200 Mon Sep 17 00:00:00 2001 From: sh <37271604+shumvgolove@users.noreply.github.com> Date: Sat, 11 Apr 2026 08:55:20 +0000 Subject: [PATCH] desktop: fix nanohttpd jitpack dependency (#6784) Jitpack stopped serving nanohttpd under the 10-char commit hash efb2ebf85a (returns 404), while the 7-char short hash efb2ebf resolves to the same commit and jars. Switch to the short form to unbreak desktopCompileClasspath. --- apps/multiplatform/common/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/multiplatform/common/build.gradle.kts b/apps/multiplatform/common/build.gradle.kts index 602b8f2b90..ea5579ed7d 100644 --- a/apps/multiplatform/common/build.gradle.kts +++ b/apps/multiplatform/common/build.gradle.kts @@ -118,8 +118,8 @@ kotlin { implementation("org.slf4j:slf4j-simple:2.0.12") implementation("uk.co.caprica:vlcj:4.8.3") implementation("net.java.dev.jna:jna:5.14.0") - implementation("com.github.NanoHttpd.nanohttpd:nanohttpd:efb2ebf85a") - implementation("com.github.NanoHttpd.nanohttpd:nanohttpd-websocket:efb2ebf85a") + implementation("com.github.NanoHttpd.nanohttpd:nanohttpd:efb2ebf") + implementation("com.github.NanoHttpd.nanohttpd:nanohttpd-websocket:efb2ebf") implementation("com.squareup.okhttp3:okhttp:4.12.0") } }