2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

74_Unifi: fixed import encode_json for newest libs

git-svn-id: https://svn.fhem.de/fhem/trunk@16784 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
wuehler 2018-05-27 10:45:08 +00:00
parent c29794f296
commit 74260d7b51
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- fixed: 74_Unifi: import encode_json for newest libs
- change: 10_KNX: new major release. See commandref for details. The
following attributes are deprecated now: readonly,
listenonly, slider and useSetExtensions.

View File

@ -24,6 +24,8 @@
# - fixed: 74_Unifi: restart-typo in poe
# V 2.2.3
# - fixed: 74_Unifi: Cookies for UnifiController 5.9.4
# V 2.2.4
# - fixed: 74_Unifi: import encode_json for newest libs
package main;
@ -32,6 +34,7 @@ use warnings;
use HttpUtils;
use POSIX;
use JSON qw(decode_json);
use JSON qw(encode_json);
##############################################################################}
### Forward declarations ####################################################{