mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix endpoint for internal refresh feed API call
This should eventually be replaced.
This commit is contained in:
parent
6193c78288
commit
3b0338967d
1 changed files with 1 additions and 1 deletions
|
|
@ -201,7 +201,7 @@ const sendUpdateSubscriptionMutation = async (
|
|||
scheduledAt: Date
|
||||
) => {
|
||||
const JWT_SECRET = env.server.jwtSecret
|
||||
const REST_BACKEND_ENDPOINT = process.env.INTERNAL_API_URL
|
||||
const REST_BACKEND_ENDPOINT = `${process.env.INTERNAL_API_URL}/api`
|
||||
|
||||
if (!JWT_SECRET || !REST_BACKEND_ENDPOINT) {
|
||||
throw 'Environment not configured correctly'
|
||||
|
|
|
|||
Loading…
Reference in a new issue