From 488354bc28680f5ff62bf0723dcac0683f9975a6 Mon Sep 17 00:00:00 2001 From: lukas Date: Sun, 7 Mar 2021 19:49:40 +0100 Subject: [PATCH] fix lukas/openmediacenter#64 --- src/pages/Player/Player.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Player/Player.tsx b/src/pages/Player/Player.tsx index e135ee7..79e9009 100644 --- a/src/pages/Player/Player.tsx +++ b/src/pages/Player/Player.tsx @@ -326,7 +326,7 @@ export class Player extends React.Component { * fetch the available video actors again */ refetchActors(): void { - callAPI(APINode.Actor, {action: 'getActorsOfVideo', videoid: this.props.match.params.id}, result => { + callAPI(APINode.Actor, {action: 'getActorsOfVideo', MovieId: parseInt(this.props.match.params.id)}, result => { this.setState({actors: result}); }); }