tsightler
tsightler
@Interloper156 I'm sorry to know that it doesn't work for you but most problems with streaming outside of the local network are not related to the plugin directly. The specific...
It's extremely unlikely that #1282 would be related as that is only regarding how homebridge-ring negotiates the WebRTC connection between itself and Ring's media server and that process is the...
This is a known issue with the new streaming API that Ring is now using and seems to be by design, basically, when you "disable" a camera it just the...
Dug into this a little bit more and I see that Ring has made some changes to modes so that you can now disable both motion detection and live view...
This problem is discussed multiple times in various issues and discussions, most recently here: https://github.com/dgreif/ring/discussions/1403 Almost certainly the token was used to connect to the Ring API without capturing the...
I'm pretty sure it's because the code checks for `hasBattery()` during startup, but that will only return true if "battery_life" property exist. However, it appears there is either no battery,...
Ah yes, sorry, missed it, glanced through too quickly. So it's not that it is not registering a battery characteristic, it's that it is reporting the battery value as null...
If you modify `line 38` in `node_modules/ring-client-api/lib/ring-camera.js` and change: ` (health && !health.battery_percentage && !health.battery_present)) {` to ` (health && !health.battery_percentage && !health.second_battery_percentage && !health.battery_present)) {` Restart and I believe...
Great, I'll see about getting a fix into the next version.
I think this is a duplicate of my issue here: https://github.com/dgreif/ring/issues/1071