Commit 7b7da74c authored by Damien Fouilleul's avatar Damien Fouilleul

mozilla: fixed name argument in add(url, name, options), thanx to thannoy on IRC

parent 77e3dfff
...@@ -1445,7 +1445,7 @@ RuntimeNPObject::InvokeResult LibvlcPlaylistNPObject::invoke(int index, const NP ...@@ -1445,7 +1445,7 @@ RuntimeNPObject::InvokeResult LibvlcPlaylistNPObject::invoke(int index, const NP
} }
else if( NPVARIANT_IS_STRING(args[1]) ) else if( NPVARIANT_IS_STRING(args[1]) )
{ {
name = stringValue(NPVARIANT_TO_STRING(args[0])); name = stringValue(NPVARIANT_TO_STRING(args[1]));
} }
else else
{ {
......
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