aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/search.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-17 10:12:30 +0200
committerChocobozzz <me@florianbigard.com>2018-09-17 10:13:54 +0200
commit2ff83ae2923aa93ccefb0fa989ae0bf138a46d77 (patch)
tree1b1578b4a38e6a0c939f5d47f62ffe43839a872e /server/controllers/api/search.ts
parent743164fed1cbeeee0fd39e9848dbe5131b734e71 (diff)
downloadPeerTube-2ff83ae2923aa93ccefb0fa989ae0bf138a46d77.tar.gz
PeerTube-2ff83ae2923aa93ccefb0fa989ae0bf138a46d77.tar.zst
PeerTube-2ff83ae2923aa93ccefb0fa989ae0bf138a46d77.zip
Handle actors search beginning with '@'
Something like @toto@example.com
Diffstat (limited to 'server/controllers/api/search.ts')
-rw-r--r--server/controllers/api/search.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/controllers/api/search.ts b/server/controllers/api/search.ts
index 28a7a04ca..58851d0b5 100644
--- a/server/controllers/api/search.ts
+++ b/server/controllers/api/search.ts
@@ -56,6 +56,9 @@ function searchVideoChannels (req: express.Request, res: express.Response) {
56 const isURISearch = search.startsWith('http://') || search.startsWith('https://') 56 const isURISearch = search.startsWith('http://') || search.startsWith('https://')
57 57
58 const parts = search.split('@') 58 const parts = search.split('@')
59
60 // Handle strings like @toto@example.com
61 if (parts.length === 3 && parts[0].length === 0) parts.shift()
59 const isWebfingerSearch = parts.length === 2 && parts.every(p => p.indexOf(' ') === -1) 62 const isWebfingerSearch = parts.length === 2 && parts.every(p => p.indexOf(' ') === -1)
60 63
61 if (isURISearch || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res) 64 if (isURISearch || isWebfingerSearch) return searchVideoChannelURI(search, isWebfingerSearch, res)