Merge pull request #305 from Stremio/fix/video-mark-as-watched

fix(Video): update mark as wathed action
This commit is contained in:
Nikola Hristov 2022-10-27 12:06:32 +03:00 committed by GitHub
commit 6f627dcbee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ const Video = ({ className, id, title, thumbnail, episode, released, upcoming, w
core.transport.dispatch({
action: 'MetaDetails',
args: {
action: 'MarkAsWatched',
action: 'MarkVideoAsWatched',
args: [id, !watched]
}
});