Fix channel search with complete handle
This commit is contained in:
parent
655c957cc3
commit
b0268e27e1
|
@ -121,7 +121,7 @@ export type SummaryOptions = {
|
|||
for (const handle of options.handles || []) {
|
||||
const [ preferredUsername, host ] = handle.split('@')
|
||||
|
||||
if (!host) {
|
||||
if (!host || host === WEBSERVER.HOST) {
|
||||
or.push({
|
||||
'$Actor.preferredUsername$': preferredUsername,
|
||||
'$Actor.serverId$': null
|
||||
|
|
|
@ -128,6 +128,13 @@ describe('Test channels search', function () {
|
|||
expect(body.data[0].displayName).to.equal('Squall channel')
|
||||
}
|
||||
|
||||
{
|
||||
const body = await command.advancedChannelSearch({ search: { handles: [ 'squall_channel@' + server.host ] } })
|
||||
expect(body.total).to.equal(1)
|
||||
expect(body.data).to.have.lengthOf(1)
|
||||
expect(body.data[0].displayName).to.equal('Squall channel')
|
||||
}
|
||||
|
||||
{
|
||||
const body = await command.advancedChannelSearch({ search: { handles: [ 'chocobozzz_channel' ] } })
|
||||
expect(body.total).to.equal(0)
|
||||
|
|
Loading…
Reference in New Issue