Skip to content

Commit

Permalink
fix: api exception call not throwing error
Browse files Browse the repository at this point in the history
  • Loading branch information
leafmoes committed Nov 6, 2024
1 parent 35b141d commit fd813c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dotenv.config()

class Config {
constructor() {
this.PORT = process.env.PORT || '8787'
this.PORT = process.env.PORT || 8787
this.API_PREFIX = process.env.API_PREFIX || '/'
this.API_KEY = process.env.API_KEY || ''
this.MAX_RETRY_COUNT = process.env.MAX_RETRY_COUNT || 3
Expand Down

0 comments on commit fd813c0

Please sign in to comment.