Skip to content

Commit

Permalink
Merge 9330e89 into c96a4d2
Browse files Browse the repository at this point in the history
  • Loading branch information
chmac committed Jun 19, 2020
2 parents c96a4d2 + 9330e89 commit c0c831b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hue-node.spec.ts
Expand Up @@ -259,7 +259,7 @@ test.serial('search', async t => {
{ id: '785d973935391ad0', internalipaddress: '192.168.x.x' }
];

moxios.stubRequest(`https://www.meethue.com/api/nupnp`, {
moxios.stubRequest(`https://discovery.meethue.com/`, {
status: 200,
method: 'GET',
response: nupnpResponse
Expand Down
2 changes: 1 addition & 1 deletion src/hue-node.ts
Expand Up @@ -22,7 +22,7 @@ const longFlashState: States.AlertState = { alert: 'lselect' };
const colorLoopEffect: States.EffectState = { effect: 'colorloop' };
const noEffect: States.EffectState = { effect: 'none' };
const _colors = new HueColors();
const nupnpEndpoint: string = `https://www.meethue.com/api/nupnp`;
const nupnpEndpoint: string = `https://discovery.meethue.com/`;
const _http = axios.default.create({
timeout: 5000
});
Expand Down

0 comments on commit c0c831b

Please sign in to comment.