2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

Meta.pm: fix import function for JSON::PP

git-svn-id: https://svn.fhem.de/fhem/trunk@19214 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-04-18 11:37:10 +00:00
parent 918d3356dd
commit 06b5d5102b

View File

@ -1243,7 +1243,7 @@ m/(^#\s+(?:\d{1,2}\.\d{1,2}\.(?:\d{2}|\d{4})\s+)?[^v\d]*(v?(?:\d{1,3}\.\d{1,3}(?
if ( keys %json > 0 ) {
eval {
require JSON::PP;
JSON::PP::import();
JSON::PP->import();
1;
};