From eb5a21b64a9a317837a1c4501aebc49b75317aef Mon Sep 17 00:00:00 2001 From: jens Date: Sat, 27 Feb 2021 00:48:17 +0100 Subject: [PATCH] Backwards compatibility in slot_programs feature --- phpInterface/shoppingList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpInterface/shoppingList.php b/phpInterface/shoppingList.php index d9ec839..40cf295 100644 --- a/phpInterface/shoppingList.php +++ b/phpInterface/shoppingList.php @@ -24,7 +24,7 @@ } } - if(isset($_GET['command']) && $_GET['command'] == "printProductList") + if(isset($_GET['command']) && $_GET['command'] == "printProductList" || $_GET['command'] == "printRhasspyProductList") { displayProductList(); exit(0);