diff --git a/data/js/tomahawk.js b/data/js/tomahawk.js index b54f66b37..3d38672e4 100644 --- a/data/js/tomahawk.js +++ b/data/js/tomahawk.js @@ -593,9 +593,10 @@ Tomahawk.base64Encode = function(b) { return window.btoa(b); }; Tomahawk.PluginManager = { objects: {}, + objectCounter: 0, identifyObject: function (object) { if( !object.hasOwnProperty('id') ) { - object.id = Tomahawk.uuid(); + object.id = this.objectCounter++; } return object.id;