mirror of
https://github.com/koel/koel
synced 2025-02-17 22:08:28 +00:00
Merge branch '1.1'
This commit is contained in:
commit
8193797bba
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ class Application extends IlluminateApplication
|
|||
*
|
||||
* @link https://github.com/phanan/koel/releases
|
||||
*/
|
||||
const VERSION = 'v1.1.1';
|
||||
const VERSION = 'v1.1.2';
|
||||
|
||||
/**
|
||||
* We have merged public path and base path.
|
||||
|
|
|
@ -20,7 +20,7 @@ class PlaylistController extends Controller
|
|||
$playlist = auth()->user()->playlists()->create($request->only('name'));
|
||||
$playlist->songs()->sync($request->input('songs'));
|
||||
|
||||
$playlist->songs = $playlist->songs->fetch('id');
|
||||
$playlist->songs = $playlist->songs->pluck('id');
|
||||
|
||||
return response()->json($playlist);
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ Back up your installation of Koel, including application files and database dump
|
|||
|
||||
``` bash
|
||||
git fetch --all
|
||||
git checkout v1.1.1
|
||||
git checkout v1.1.2
|
||||
```
|
||||
|
||||
#### 2. Upgrade Laravel, install packages, and migrate database
|
||||
|
|
Loading…
Add table
Reference in a new issue