Skip to content

Commit

Permalink
Fix post-processing from UI (develop) (#11658)
Browse files Browse the repository at this point in the history
  • Loading branch information
medariox authored Mar 18, 2024
1 parent 9824610 commit ee0abcc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ export default {
}
// Save the list
this.client.apiRoute.post('home/saveShowNotifyList', form);
this.client.apiRoute.postForm('home/saveShowNotifyList', form);
},
async prowlUpdateApiKeys(selectedShow) {
this.prowlSelectedShow = selectedShow;
Expand Down
4 changes: 2 additions & 2 deletions themes-default/slim/src/components/manual-post-process.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default {
if (runAsync) {
form.set('run_async', true);
this.client.apiRoute.post('home/postprocess/processEpisode', form)
this.client.apiRoute.postForm('home/postprocess/processEpisode', form)
.then(response => {
if (response && response.data.status === 'success') {
this.logs.push(response.data.message.trim());
Expand All @@ -146,7 +146,7 @@ export default {
});
} else {
form.set('run_sync', true);
this.client.apiRoute.post('home/postprocess/processEpisode', form)
this.client.apiRoute.postForm('home/postprocess/processEpisode', form)
.then(response => {
if (response && response.data.status === 'success') {
this.logs = [...this.logs, ...response.data.output];
Expand Down
4 changes: 2 additions & 2 deletions themes/dark/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions themes/light/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

0 comments on commit ee0abcc

Please sign in to comment.