Skip to content

Commit e66f34e

Browse files
elias001011gokadzev
authored andcommitted
fix: hide edit button for YouTube playlists
1 parent 85c399c commit e66f34e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/widgets/playlist_bar.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,7 @@ class PlaylistBar extends StatelessWidget {
228228
),
229229
if (playlistData != null &&
230230
!isFolder &&
231-
(playlistData!['source'] == 'user-created' ||
232-
playlistData!['source'] == 'user-youtube'))
231+
playlistData!['source'] == 'user-created')
233232
PopupMenuItem<String>(
234233
value: 'edit',
235234
child: Row(

0 commit comments

Comments
 (0)