diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-17 10:12:30 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-17 10:13:54 +0200 |
commit | 2ff83ae2923aa93ccefb0fa989ae0bf138a46d77 (patch) | |
tree | 1b1578b4a38e6a0c939f5d47f62ffe43839a872e /server/helpers/webfinger.ts | |
parent | 743164fed1cbeeee0fd39e9848dbe5131b734e71 (diff) | |
download | PeerTube-2ff83ae2923aa93ccefb0fa989ae0bf138a46d77.tar.gz PeerTube-2ff83ae2923aa93ccefb0fa989ae0bf138a46d77.tar.zst PeerTube-2ff83ae2923aa93ccefb0fa989ae0bf138a46d77.zip |
Handle actors search beginning with '@'
Something like @toto@example.com
Diffstat (limited to 'server/helpers/webfinger.ts')
-rw-r--r-- | server/helpers/webfinger.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/helpers/webfinger.ts b/server/helpers/webfinger.ts index 10fcec462..156376943 100644 --- a/server/helpers/webfinger.ts +++ b/server/helpers/webfinger.ts | |||
@@ -12,7 +12,10 @@ const webfinger = new WebFinger({ | |||
12 | request_timeout: 3000 | 12 | request_timeout: 3000 |
13 | }) | 13 | }) |
14 | 14 | ||
15 | async function loadActorUrlOrGetFromWebfinger (uri: string) { | 15 | async function loadActorUrlOrGetFromWebfinger (uriArg: string) { |
16 | // Handle strings like @toto@example.com | ||
17 | const uri = uriArg.startsWith('@') ? uriArg.slice(1) : uriArg | ||
18 | |||
16 | const [ name, host ] = uri.split('@') | 19 | const [ name, host ] = uri.split('@') |
17 | let actor: ActorModel | 20 | let actor: ActorModel |
18 | 21 | ||