From 60bb7bf581a9eb5bbc350dd3804ce814e1e7dbe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Cig=C3=A1nek?= Date: Mon, 21 Oct 2024 15:49:11 +0200 Subject: [PATCH] bindings/kotlin: Fix typo in class name --- bindings/kotlin/lib/build.gradle | 2 +- .../src/main/kotlin/org/equalitie/ouisync/lib/Repository.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/kotlin/lib/build.gradle b/bindings/kotlin/lib/build.gradle index 75a8bbfef..e05e0341b 100644 --- a/bindings/kotlin/lib/build.gradle +++ b/bindings/kotlin/lib/build.gradle @@ -163,7 +163,7 @@ tasks.withType(DokkaTask) { { "customAssets": ["${file("docs/logo-icon.png")}"], "customStyleSheets": ["${file("docs/logo-styles.css")}"], - "footerMessage": "Copyright (c) 2024 eQualitie." + "footerMessage": "Copyright (c) 2024 eQualitie | Ouisync website | Ouisync git repository" } """ diff --git a/bindings/kotlin/lib/src/main/kotlin/org/equalitie/ouisync/lib/Repository.kt b/bindings/kotlin/lib/src/main/kotlin/org/equalitie/ouisync/lib/Repository.kt index 9c4e9590a..b3d1087b6 100644 --- a/bindings/kotlin/lib/src/main/kotlin/org/equalitie/ouisync/lib/Repository.kt +++ b/bindings/kotlin/lib/src/main/kotlin/org/equalitie/ouisync/lib/Repository.kt @@ -457,7 +457,7 @@ sealed class AccessChange { packer.packNil() } } - is DiableAccess -> { + is DisableAccess -> { packer.packString("disabled") } } @@ -476,4 +476,4 @@ class EnableAccess(val secret: SetLocalSecret?) : AccessChange() * * @see [Repository.setAccess] */ -class DiableAccess() : AccessChange() +class DisableAccess() : AccessChange()