Unify domain names in README
[stouyapi.git] / www / api / v1 / queued_downloads_delete.php
index 43f7440054200655010d45600d61c400295b44ec..a044053502ef49d6793275a273e1c231122d5f22 100644 (file)
@@ -20,8 +20,15 @@ if ($ip == '') {
 }
 $ip = mapIp($ip);
 
+if (!isset($_GET['game'])) {
+    header('HTTP/1.0 400 Bad Request');
+    header('Content-type: text/plain');
+    echo 'Game parameter missing' . "\n";
+    exit(1);
+}
+
 $game = $_GET['game'];
-$cleanGame = preg_replace('#[^a-zA-Z0-9.]#', '', $game);
+$cleanGame = preg_replace('#[^a-zA-Z0-9._]#', '', $game);
 if ($game != $cleanGame || $game == '') {
     header('HTTP/1.0 400 Bad Request');
     header('Content-type: text/plain');