Skip to content

v0.3.0

Compare
Choose a tag to compare
@hawkeye64 hawkeye64 released this 23 Nov 23:37
· 24 commits to master since this release
  • 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];