diff --git a/scripts/system/html/js/record.js b/scripts/system/html/js/record.js
index c78500307d..aae4d1c89a 100644
--- a/scripts/system/html/js/record.js
+++ b/scripts/system/html/js/record.js
@@ -53,10 +53,6 @@ function updatePlayersUnused() {
elPlayersUnused.innerHTML = numberOfPlayers - recordingsBeingPlayed.length;
}
-function orderRecording(a, b) {
- return a.filename > b.filename ? 1 : -1;
-}
-
function updateRecordings() {
var tbody,
tr,
@@ -68,8 +64,6 @@ function updateRecordings() {
i,
HIFI_GLYPH_CLOSE = "w";
- recordingsBeingPlayed.sort(orderRecording);
-
tbody = document.createElement("tbody");
tbody.id = "recordings-list";