post link redirect should be to profile

This commit is contained in:
mbecker20
2026-02-26 15:56:37 -08:00
parent 9ffa40022d
commit ef5a0982cb

View File

@@ -148,7 +148,7 @@ impl AuthImpl for KomodoAuthImpl {
fn post_link_redirect(&self) -> &str {
static POST_LINK_REDIRECT: LazyLock<String> =
LazyLock::new(|| format!("{}/settings", core_config().host));
LazyLock::new(|| format!("{}/profile", core_config().host));
&POST_LINK_REDIRECT
}