From e82710dc0b3a57fb8b8f505cc814ebe965c29727 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Tue, 26 May 2026 21:24:23 -0400 Subject: [PATCH] =?UTF-8?q?fix(android):=20MeRepository=20KDoc=20=E2=80=94?= =?UTF-8?q?=20actually=20remove=20the=20/api/me/*=20trap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit c74fa41 fixed MeApi.kt but the MeRepository.kt edit failed silently (stale Read). MeRepository's KDoc still had the wildcard-path backtick block that closes the doc comment prematurely. Replacing it now. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../fabledsword/minstrel/settings/data/MeRepository.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/android/app/src/main/java/com/fabledsword/minstrel/settings/data/MeRepository.kt b/android/app/src/main/java/com/fabledsword/minstrel/settings/data/MeRepository.kt index 91a0971d..65a4a054 100644 --- a/android/app/src/main/java/com/fabledsword/minstrel/settings/data/MeRepository.kt +++ b/android/app/src/main/java/com/fabledsword/minstrel/settings/data/MeRepository.kt @@ -10,11 +10,11 @@ import javax.inject.Inject import javax.inject.Singleton /** - * Thin facade over `/api/me/*` for the Settings Profile + Password - * cards. No Room caching — the Settings card fetches on screen - * mount and writes go straight to the server. Network errors - * surface to the caller for UI snackbar; no offline-queue path - * because changing your own password offline doesn't make sense. + * Thin facade over the `/api/me` endpoints for the Settings Profile + * and Password cards. No Room caching — the Settings card fetches + * on screen mount and writes go straight to the server. Network + * errors surface to the caller for UI snackbar; no offline-queue + * path because changing your own password offline doesn't make sense. */ @Singleton class MeRepository @Inject constructor(retrofit: Retrofit) {