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

98_fheminfo.pm: remove special handling for DbLog

git-svn-id: https://svn.fhem.de/fhem/trunk@14652 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2017-07-05 20:09:22 +00:00
parent 52748195ac
commit 694817bf0b

View File

@ -97,10 +97,6 @@ sub _fi2_Count() {
$model = defined($defs{$key}{model}) ? $defs{$key}{model} : $model;
$model = defined($defs{$key}{MODEL}) ? $defs{$key}{MODEL} : $model;
# special internal for DbLog
$model = defined($defs{$key}{DBMODEL}) ? $defs{$key}{DBMODEL} : $model
if (lc($type) eq 'dblog');
# 3. look for model information in attributes
$model = AttrVal($name,'model',$model);