From cb02227302d56cad90b48b64d4ce2c79998bb343 Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Tue, 7 Apr 2020 22:08:18 -0400 Subject: [PATCH] fixed bug where recently saved playlists could not be shared --- src/app/player/player.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/player/player.component.ts b/src/app/player/player.component.ts index f2e7b4c5..dfaae23e 100644 --- a/src/app/player/player.component.ts +++ b/src/app/player/player.component.ts @@ -281,6 +281,7 @@ export class PlayerComponent implements OnInit { if (res['success']) { dialogRef.close(); const new_playlist = res['new_playlist']; + this.db_playlist = new_playlist; this.openSnackBar('Playlist \'' + name + '\' successfully created!', '') this.playlistPostCreationHandler(new_playlist.id); }