Use /feeds/users/{username} path for user's Atom feed
This commit is contained in:
parent
03abee0d8f
commit
4d27411752
2 changed files with 5 additions and 1 deletions
|
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
|
||||
- Use `/feeds/users/{username}` path for user's Atom feed.
|
||||
|
||||
## [1.14.0] - 2023-02-22
|
||||
|
||||
### Added
|
||||
|
|
|
@ -508,7 +508,7 @@ const feedUrl = $computed<string>(() => {
|
|||
if (!profile || !isLocalUser()) {
|
||||
return ""
|
||||
}
|
||||
return `${BACKEND_URL}/feeds/${profile.username}`
|
||||
return `${BACKEND_URL}/feeds/users/${profile.username}`
|
||||
})
|
||||
|
||||
function canVerifyEthereumAddress(): boolean {
|
||||
|
|
Loading…
Reference in a new issue