Because booleans are arriving as text true or false, but the database defines them as ints, put.php is always putting 0 in the table, the string true ends up as 0, the string false ends up as 0. The put.php script needs to convert true to 1, and false to 0 prior to inserting the values into the database. Affected fields are: "isroot" "isplaying" "widgetsenabled" and "sendstandby"
Because booleans are arriving as text true or false, but the database defines them as ints, put.php is always putting 0 in the table, the string true ends up as 0, the string false ends up as 0. The put.php script needs to convert true to 1, and false to 0 prior to inserting the values into the database. Affected fields are: "isroot" "isplaying" "widgetsenabled" and "sendstandby"