3
0
mirror of https://github.com/Qortal/q-tube.git synced 2025-02-11 17:55:51 +00:00

fix create playlist bug

This commit is contained in:
PhilReact 2023-12-30 18:17:39 +02:00
parent cd5d8f99f1
commit 1806ec3aa0
2 changed files with 1 additions and 2 deletions

View File

@ -342,7 +342,7 @@ export const EditPlaylist = () => {
description: metadescription, description: metadescription,
id: identifier, id: identifier,
service: "PLAYLIST", service: "PLAYLIST",
name: username, user: username,
...playlistObject ...playlistObject
} }
dispatch( dispatch(

View File

@ -560,7 +560,6 @@ export const VideoList = ({ mode }: VideoListProps) => {
return null; return null;
} }
const isPlaylist = videoObj?.service === "PLAYLIST"; const isPlaylist = videoObj?.service === "PLAYLIST";
if (isPlaylist) { if (isPlaylist) {
return ( return (