diff --git a/common/content/completion.js b/common/content/completion.js index 2c07e833..3135db74 100644 --- a/common/content/completion.js +++ b/common/content/completion.js @@ -1390,7 +1390,7 @@ function Completion() //{{{ completion.urls(context, tags); }, - songCompletion: function songCompletion(context, args) + song: function song(context, args) { if (args.completeArg == 0) context.completions = getArtists(); diff --git a/xulmus/content/player.js b/xulmus/content/player.js index ab334ce5..c876d574 100755 --- a/xulmus/content/player.js +++ b/xulmus/content/player.js @@ -109,7 +109,7 @@ function Player() // {{{ sqncr.playView(mainView, mainView.getIndexForItem(library.getItemsByProperties(customProps).queryElementAt(0,Ci.sbIMediaItem))); }, { - completer: function (context, args) completion.songCompletion(context, args) + completer: function (context, args) completion.song(context, args) }); } // }}}