From 706db9bc25fed0dd106cc181a83ff081801f5062 Mon Sep 17 00:00:00 2001 From: Duncan Sommerville Date: Thu, 29 Oct 2015 13:47:43 -0400 Subject: [PATCH] Fix bug where multiple file metadata editors couldn't be opened through context menu --- airtime_mvc/public/js/airtime/library/library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/js/airtime/library/library.js b/airtime_mvc/public/js/airtime/library/library.js index 6fad8e7a3..42622208d 100644 --- a/airtime_mvc/public/js/airtime/library/library.js +++ b/airtime_mvc/public/js/airtime/library/library.js @@ -1075,7 +1075,7 @@ var AIRTIME = (function(AIRTIME) { if (data.ftype === "audioclip") { callback = function() { $.get(oItems.edit.url, {format: "json"}, function(json){ - AIRTIME.playlist.fileMdEdit(json); + AIRTIME.playlist.fileMdEdit(json, data.tr_id); }); }; } else if (data.ftype === "playlist" || data.ftype === "block") {