fix: relationships not working on some clients
This commit is contained in:
parent
b596a4978f
commit
cd1083cc30
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ export class MastodonApiServerService {
|
|||
// displayed without being logged in
|
||||
let users;
|
||||
try {
|
||||
let ids = _request.query ? (_request.query as any)['id[]'] : null;
|
||||
let ids = _request.query ? (_request.query as any)['id[]'] ?? (_request.query as any)['id'] : null;
|
||||
if (typeof ids === 'string') {
|
||||
ids = [ids];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue