mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-21 23:38:39 +00:00
Fixed shelf activity display & updated book sort operation
This commit is contained in:
parent
5910e00fb8
commit
ba09dad1fe
6 changed files with 15 additions and 16 deletions
app/Http/Controllers
|
@ -415,6 +415,7 @@ class BookController extends Controller
|
|||
{
|
||||
// Update the cover image if in request
|
||||
if ($request->has('image')) {
|
||||
$this->imageRepo->destroyImage($book->cover);
|
||||
$newImage = $request->file('image');
|
||||
$image = $this->imageRepo->saveNew($newImage, 'cover_book', $book->id, 512, 512, true);
|
||||
$book->image_id = $image->id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue