From a6820d3ae0ab9da50b72305fdca5c7a91a5f0cf7 Mon Sep 17 00:00:00 2001 From: mrilyew <99399973+mrilyew@users.noreply.github.com> Date: Mon, 26 May 2025 23:22:41 +0300 Subject: [PATCH] feat: playlist cover is unlisted --- Web/Models/Entities/Playlist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Web/Models/Entities/Playlist.php b/Web/Models/Entities/Playlist.php index fedb2d98..4265d7e1 100644 --- a/Web/Models/Entities/Playlist.php +++ b/Web/Models/Entities/Playlist.php @@ -260,6 +260,7 @@ class Playlist extends MediaCollection $cover->setDescription("Playlist cover image"); $cover->setFile($file); $cover->setCreated(time()); + $cover->setSystem(true); $cover->save(); $this->setCover_photo_id($cover->getId());