tecuts commited on
Commit
70f45b2
·
verified ·
1 Parent(s): 9cd776b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -110,12 +110,10 @@ async def track_dl():
110
  result = {"url": dl_url}
111
  return jsonify(result)
112
  else:
113
- raise HTTPException(
114
- status_code=429,
115
- detail={
116
  "error": "Failed to Fetch the Track."
117
  }
118
- )
119
 
120
 
121
 
 
110
  result = {"url": dl_url}
111
  return jsonify(result)
112
  else:
113
+ return {
 
 
114
  "error": "Failed to Fetch the Track."
115
  }
116
+
117
 
118
 
119