Comparing version 0.4.0 to 0.4.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.4.1"></a> | ||
## [0.4.1](https://github.com/ShyykoSerhiy/spotilocal/compare/v0.4.0...v0.4.1) (2017-09-25) | ||
### Bug Fixes | ||
* spotify has changed ports from 4370-4380 to 4380-4389 ([f23bb15](https://github.com/ShyykoSerhiy/spotilocal/commit/f23bb15)) | ||
<a name="0.4.0"></a> | ||
@@ -7,0 +17,0 @@ # 0.4.0 (2017-09-24) |
{ | ||
"name": "spotilocal", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "Unofficial api for Spotify's local web server.", | ||
@@ -5,0 +5,0 @@ "main": "dist/src/index.js", |
@@ -143,3 +143,3 @@ import * as request from 'superagent'; | ||
/** | ||
* Gets spotilocal api url with port in range 4370-4380. | ||
* Gets spotilocal api url with port in range 4370-4389. | ||
*/ | ||
@@ -149,3 +149,3 @@ public static getSpotilocalUrl(): Promise<string> { | ||
const tryGetSpotilocalVersion = (port: number) => { | ||
if (port > 4380) { | ||
if (port > 4389) { | ||
reject(SPOTILOCAL_IS_NOT_RUNNING); | ||
@@ -152,0 +152,0 @@ return; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
237124