From 866d9b6af30ba05b39e11b9d917bd9826b91d027 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Tue, 27 Oct 2015 13:31:37 +0100 Subject: [PATCH] Be more explicit about which getStreamUrl function to call --- data/js/tomahawk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/js/tomahawk.js b/data/js/tomahawk.js index 6949a38b7..bdc64a616 100644 --- a/data/js/tomahawk.js +++ b/data/js/tomahawk.js @@ -308,7 +308,7 @@ Tomahawk.Resolver = { _adapter_init: function () { this._urlProtocol = this.settings.name.replace(/[^a-zA-Z]/g, '').toLowerCase(); - Tomahawk.addCustomUrlHandler(this._urlProtocol, 'getStreamUrl', true); + Tomahawk.addCustomUrlHandler(this._urlProtocol, '"_adapter_getStreamUrl', true); Tomahawk.log('Registered custom url handler for protocol "' + this._urlProtocol + '"'); this.init(); },