From 77813a2acd99e54ad91d4da7c55a1ab4434ea541 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 21 May 2023 18:58:05 +0000 Subject: [PATCH] Make the host readonly --- bluesky/bluesky.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluesky/bluesky.php b/bluesky/bluesky.php index d5652b92..7c0bafbc 100644 --- a/bluesky/bluesky.php +++ b/bluesky/bluesky.php @@ -52,7 +52,7 @@ function bluesky_settings(array &$data) $html = Renderer::replaceMacros($t, [ '$enable' => ['bluesky', DI::l10n()->t('Enable Bluesky Post Addon'), $enabled], '$bydefault' => ['bluesky_bydefault', DI::l10n()->t('Post to Bluesky by default'), $def_enabled], - '$host' => ['bluesky_host', DI::l10n()->t('Bluesky host'), $host, '', '', '', 'url'], + '$host' => ['bluesky_host', DI::l10n()->t('Bluesky host'), $host, '', '', 'readonly'], '$handle' => ['bluesky_handle', DI::l10n()->t('Bluesky handle'), $handle], '$did' => ['bluesky_did', DI::l10n()->t('Bluesky DID'), $did, DI::l10n()->t('This is the unique identifier. It will be fetched automatically, when the handle is entered.'), '', 'readonly'], '$username' => ['bluesky_username', DI::l10n()->t('Bluesky app username'), $username, DI::l10n()->t("Please don't add your real username here, but instead create a specific app username and app password in the Bluesky settings.")],