File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.2.4] - 2019-03-25
10
+ ### Fixed
11
+ - Socket hang up on ` /player/stop ` because of missing ` send() `
12
+
9
13
## [ 1.2.3] - 2019-03-25
10
14
### Added
11
15
- Changelog
@@ -38,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
38
42
### Added
39
43
- This is v1.0 which contains all of my current use cases so far.
40
44
41
- [ Unreleased ] : https://github.com/moecre/forked-daapd-homebridge-middleware/compare/1.2.3...HEAD
45
+ [ Unreleased ] : https://github.com/moecre/forked-daapd-homebridge-middleware/compare/1.2.4...HEAD
46
+ [ 1.2.4 ] : https://github.com/moecre/forked-daapd-homebridge-middleware/compare/1.2.3...1.2.4
42
47
[ 1.2.3 ] : https://github.com/moecre/forked-daapd-homebridge-middleware/compare/1.1.3...1.2.3
43
48
[ 1.1.3 ] : https://github.com/moecre/forked-daapd-homebridge-middleware/compare/1.1.2...1.1.3
44
49
[ 1.1.2 ] : https://github.com/moecre/forked-daapd-homebridge-middleware/compare/1.1.1...1.1.2
Original file line number Diff line number Diff line change 15
15
" plugin" ,
16
16
" playlist"
17
17
],
18
- "version" : " 1.2.3 " ,
18
+ "version" : " 1.2.4 " ,
19
19
"scripts" : {
20
20
"start" : " node ./bin/www" ,
21
21
"dev-server" : " DEBUG=* nodemon ./bin/www"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const router = express.Router()
10
10
router . get ( '/stop' , ( req , res ) => {
11
11
Player . stop ( )
12
12
. then ( response => {
13
- res . status ( response . status )
13
+ res . status ( response . status ) . send ( response . statusText )
14
14
} )
15
15
. catch ( err => {
16
16
logger . error ( err )
You can’t perform that action at this time.
0 commit comments