v0.3.0
- fix: cache key (#385)
instead of:
const c = this.camera[address]
The cache is now stored as:
const cacheKey = `${address}:${port}`;
const c = this.cameras[cacheKey];
instead of:
const c = this.camera[address]
The cache is now stored as:
const cacheKey = `${address}:${port}`;
const c = this.cameras[cacheKey];