Commit b99a4797 authored by Jean-Paul Saman's avatar Jean-Paul Saman

mozilla: fix regression introduced in: da3d8cdb8bb6a11bf727cf333da2ffa9816f117b

Fixes play/pause and fullscreen toggle.
parent 0c58d4cb
...@@ -442,7 +442,7 @@ int VlcPlugin::playlist_isplaying( libvlc_exception_t *ex ) ...@@ -442,7 +442,7 @@ int VlcPlugin::playlist_isplaying( libvlc_exception_t *ex )
{ {
int is_playing = 0; int is_playing = 0;
if( libvlc_media_player ) if( libvlc_media_player )
libvlc_media_player_is_playing( libvlc_media_player, ex ); is_playing = libvlc_media_player_is_playing( libvlc_media_player, ex );
return is_playing; return is_playing;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment