Commit 0a1d5031 authored by Rafaël Carré's avatar Rafaël Carré

Fix one-instance

Identity is not a method but a property
"" is not a valid object path
parent 3bf09ca7
...@@ -538,7 +538,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -538,7 +538,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
p_test_msg = dbus_message_new_method_call( p_test_msg = dbus_message_new_method_call(
"org.mpris.MediaPlayer2.vlc", "/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2.vlc", "/org/mpris/MediaPlayer2",
"org.mpris.MediaPlayer2", "Identity" ); "org.freedesktop.DBus.Introspectable", "Introspect" );
/* block until a reply arrives */ /* block until a reply arrives */
p_test_reply = dbus_connection_send_with_reply_and_block( p_test_reply = dbus_connection_send_with_reply_and_block(
...@@ -573,7 +573,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -573,7 +573,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* We need to resolve relative paths in this instance */ /* We need to resolve relative paths in this instance */
char *psz_mrl = make_URI( ppsz_argv[i_input], NULL ); char *psz_mrl = make_URI( ppsz_argv[i_input], NULL );
char *psz_after_track = ""; char *psz_after_track = "/";
if( psz_mrl == NULL ) if( psz_mrl == NULL )
continue; continue;
......
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