Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/podgrab/commit/e07000f4ad3c8a243a01229f5373daaafe718202
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
6 deletions
@ -145,18 +145,18 @@
.then(function () {});
return false;
}
function deletePodcastEpisodes (id) {
console.log(id);
function deletePodcast(id) {
// console.log(id);
var confirmed = confirm(
"Are you sure you want to delete all episodes this podcast?"
"Are you sure you want to delete this podcast and all files ?"
);
if (!confirmed) {
return false;
}
axios
.delete("/podcasts/" + id + "/items" )
.delete("/podcasts/" + id)
.then(function (response) {
Vue.toasted.show("Podcast Episodes deleted successfully.", {
Vue.toasted.show("Podcast deleted successfully.", {
theme: "bubble",
position: "top-right",
duration: 5000,
@ -180,7 +180,7 @@
function deletePodcastEpisodes(id) {
console.log(id);
var confirmed = confirm(
"Are you sure you want to delete all episodes this podcast?"
"Are you sure you want to delete all episodes of this podcast?"
);
if (!confirmed) {
return false;