robert-alfaro/xfinity-usage

Platform error sensor.xfinity - Integration 'xfinity' not found.

astranberg opened this issue · 6 comments

Not sure if this is the plugin or me? I'm getting this error when I check configuration.yaml:

Platform error sensor.xfinity - Integration 'xfinity' not found.

My YAML is valid on an online validator.

`
sensor:

  • platform: xfinity
    username: !secret xfinity_email
    password: !secret xfinity_password
    `

Uninstalling and re-installing via HACS didn't work.

Downloading and installing manually didn't work.

I'm really at a loss here....

Same here

Same here

I was getting the same results:

Platform error sensor.xfinity - Integration 'xfinity' not found.

I found that it was complaining of no version info in the manifest.json file -

if you go to this file: /config/custom_components/xfinity/manifest.json

and add the following:
"version": "0.1.0",

between name and documentation, this will allow the integration to load (may need to restart home assistant).

The issue I'm seeing now is failure to authenticate...

@robert-alfaro - for some reason, it appears that hacs isn't pulling the full repo down, I noticed in the manifest.json file, you are missing the comma at the end of the version line - I'm not sure if this is the reason it's not updating or not.

EDIT

{
  "domain": "xfinity",
  "name": "Xfinity Usage",
  "version": "0.1.0",
  "documentation": "https://github.com/robert-alfaro/xfinity-usage",
  "requirements": [],
  "dependencies": [],
  "codeowners": [
    "@ralfaro"
  ]
}

I can confirm that version is missing a comma. Adding it fixes this.

add missing comma 1737ab8

add missing comma 1737ab8

this works. can be closed.