1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix incorrect playbackstop event parameters

This commit is contained in:
Bill Thornton 2024-04-30 16:32:43 -04:00
parent 873d8597a4
commit a18deacbb6

View file

@ -253,7 +253,7 @@ const ItemsContainer: FC<ItemsContainerProps> = ({
); );
const onPlaybackStopped = useCallback( const onPlaybackStopped = useCallback(
(_e: Event, apiClient, stopInfo) => { (_e: Event, stopInfo) => {
const state = stopInfo.state; const state = stopInfo.state;
if ( if (