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
|
// displayed without being logged in
|
||||||
let users;
|
let users;
|
||||||
try {
|
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') {
|
if (typeof ids === 'string') {
|
||||||
ids = [ids];
|
ids = [ids];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue