dregini

Results 5 comments of dregini

Hi, Yes i just tried to update the plugin with HACS and then readded the car and I still have the problem. edit: This time I also found in the...

Hi, i just updated to 1.61, but I'm still getting the error when i try to add a vehicle. This is the first of many log error: ``` Error adding...

Hi, from the ui I do not see duplicates, but the information do not update. If I remove the car and re-add it the data update but in the log...

Hi, to solve this issue I have this proposal: edit **pandoc->option**: ``` public function option($name, $value = false) { if(key_exists($name, $this->options)){ if(is_array($value)){ $this->options[$name] = array_merge($this->options[$name], $value); }else{ array_push($this->options[$name], $value); }...

To make it more compatible with previous implementation another option could be this: ``` public function option($name, $value = false, $override = true) { if($override){ $this->options[$name] = []; } if(key_exists($name,...