Skip to content

Commit

Permalink
Update bsm-podcast.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rbtnn authored Mar 18, 2024
1 parent e179407 commit b0ffdec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ghost/core/core/server/api/endpoints/bsm-podcast.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const config = require('../../../shared/config');
const models = require('../../models');
const https = require('https');

const fetch_feed = async () => {
const URL = atob('aHR0cHM6Ly9yYnRubi5naXRodWIuaW8vYnNtLWZlZWQtZ2VuZXJhdG9yL2JzbS1mZWVkLnhtbA==');
const URL = config.get('bsm_podcast').url;
return new Promise((resolve, reject) => {
https.get(URL, (resp) => {
let data = '';
Expand Down

0 comments on commit b0ffdec

Please sign in to comment.