ming il y a 3 ans
Parent
commit
05931f9071
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      api/main.py

+ 1 - 1
api/main.py

@@ -116,7 +116,7 @@ async def get_courses(tags:List[int]):
     for row in db.query(statement):
         courses.append({'id':row['course_id'],'title':row['title'],'url':row['url']
         ,'teacher_name':['teacher_name'],'price':row['price'],'price_discount':row['price_discount'],'profile':row['profile']
-        ,'cover_img':serverADDR + row['cover_img'],'hours':row['hours'],'units':row['units']})
+        ,'cover_img':'https://'+serverADDR + row['cover_img'],'hours':row['hours'],'units':row['units']})
     return courses
 
 @app.post("/courses")