Check if playlist has name when creating a new playlist.

This commit is contained in:
Kavin 2022-04-07 19:19:40 +01:00
parent 6a05acf939
commit b68b9e2c1e
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD

View File

@ -64,19 +64,20 @@ export default {
},
createPlaylist() {
const name = prompt(this.$t("actions.create_playlist"));
this.fetchJson(this.apiUrl() + "/user/playlists/create", null, {
method: "POST",
body: JSON.stringify({
name: name,
}),
headers: {
Authorization: this.getAuthToken(),
"Content-Type": "application/json",
},
}).then(json => {
if (json.error) alert(json.error);
else this.fetchPlaylists();
});
if (name)
this.fetchJson(this.apiUrl() + "/user/playlists/create", null, {
method: "POST",
body: JSON.stringify({
name: name,
}),
headers: {
Authorization: this.getAuthToken(),
"Content-Type": "application/json",
},
}).then(json => {
if (json.error) alert(json.error);
else this.fetchPlaylists();
});
},
},
};