From 6bec5ee3bff4b4c0fedb6de72f5771b6a058eaf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Sun, 7 Jun 2015 19:43:22 +0200 Subject: [PATCH] Fixed problem with uppercase letters.. --- static/js/remotecontroller.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/js/remotecontroller.js b/static/js/remotecontroller.js index ee4af138..b29df52e 100644 --- a/static/js/remotecontroller.js +++ b/static/js/remotecontroller.js @@ -34,6 +34,7 @@ function control() { if(start) { + id = id.toLowerCase(); if(!id)id = $("#code-input").val().toLowerCase(); $("#code-input").val(""); start = false;