fix help links (#938)

This commit is contained in:
slothful-vassal
2026-04-22 09:03:48 +02:00
committed by GitHub
parent 5457057bb2
commit c9256aeb29
3 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ func verifySettings(app core.App) {
if len(encryptionKey) != 32 { if len(encryptionKey) != 32 {
// terminate if the encryption key is not set or is not exactly 32 bytes long, // terminate if the encryption key is not set or is not exactly 32 bytes long,
// as this is a requirement for PocketBase to function properly. // as this is a requirement for PocketBase to function properly.
log.Fatal("POCKETBASE_ENCRYPTION_KEY must be exactly 32 bytes long- See https://wanderer.to/run/installation/#prerequisites for more information") log.Fatal("POCKETBASE_ENCRYPTION_KEY must be exactly 32 bytes long- See https://wanderer.to/run/installation/docker#prerequisites for more information")
} }
if encryptionKey == defaultPocketBaseEncryptionKey { if encryptionKey == defaultPocketBaseEncryptionKey {

View File

@@ -13,7 +13,7 @@
<h5 class="font-semibold">Resources</h5> <h5 class="font-semibold">Resources</h5>
<ul class="mt-4 text-sm"> <ul class="mt-4 text-sm">
<li> <li>
<a href="https://wanderer.to/run/installation/" <a href="https://wanderer.to/run/installation/quick/"
>{$_("documentation")}</a >{$_("documentation")}</a
> >
</li> </li>

View File

@@ -25,7 +25,7 @@
{ text: `${$_("import")}/${$_("export")}`, value: "/settings/export" }, { text: `${$_("import")}/${$_("export")}`, value: "/settings/export" },
{ {
text: $_("help"), text: $_("help"),
value: "https://wanderer.to/run/installation", value: "https://wanderer.to/run/installation/quick",
}, },
]; ];