mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-08 13:24:56 +00:00
49_SSCam: module will not load due to Unknown warnings category
'experimental' when using an older perl version git-svn-id: https://svn.fhem.de/fhem/trunk@11333 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
31394d6d44
commit
021a9f8b8a
@ -1,5 +1,7 @@
|
||||
# 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.
|
||||
- bugfix: 49_SSCam: module will not load due to Unknown warnings category
|
||||
'experimental' when using an older perl version
|
||||
- feature: 71_PHILIPS_AUDIO : Added input support for AW9000
|
||||
- bugfix: 50_TelegramBot: contact handling failed (/ in contact names ??)
|
||||
- feature: new module 02_FTUISRV.pm for server side templates for tablet UI
|
||||
|
@ -27,6 +27,8 @@
|
||||
##########################################################################################################
|
||||
# Versions History:
|
||||
#
|
||||
# 1.26.1 27.04.2016 bugfix module will not load due to Unknown warnings category 'experimental'
|
||||
# when using an older perl version
|
||||
# 1.26 22.04.2016 Attribute "disable" to deactivate the module added
|
||||
# 1.25 18.04.2016 motion detection parameters can be entered if
|
||||
# motion detection by camera or SVS is used
|
||||
@ -129,7 +131,7 @@ use strict;
|
||||
use warnings;
|
||||
use MIME::Base64;
|
||||
use HttpUtils;
|
||||
no warnings qw( experimental::autoderef ); # 5.18+
|
||||
no if $] >= 5.017011, warnings => 'experimental';
|
||||
|
||||
# Aufbau Errorcode-Hashes (siehe Surveillance Station Web API)
|
||||
my %SSCam_errauthlist = (
|
||||
|
Loading…
x
Reference in New Issue
Block a user