From 6361f95aacc161622bb9b31b8260e7ff9631f133 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sat, 20 Mar 2010 10:37:11 +0000 Subject: [PATCH] Fix typo :( --- src/webui/static/app/dvr.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index 2fa897c7..ba58d9eb 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -120,7 +120,7 @@ tvheadend.dvrschedule = function() { } return hours + ' hrs, ' + min + ' min'; } else { - return parsInt(value) + ' min'; + return parseInt(value) + ' min'; } }