Skip to content

Commit

Permalink
Update src/actions.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Mia <[email protected]>
  • Loading branch information
MCGallaspy and mia-pi-git authored Oct 28, 2024
1 parent 0fb1f11 commit 567da8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ export const actions: {[k: string]: QueryHandler} = {
if (!params.ids) {
throw new ActionError("Invalid batch replay request, must provide ids");
}
const ids: string[] = params.ids.split(',').slice(0, 51);
const ids = params.ids.split(',').slice(0, 51);
return Replays.getBatch(ids);
},
// sent by ps server
Expand Down

0 comments on commit 567da8b

Please sign in to comment.