Unverified Commit e2c95029 authored by Kartheek Palla's avatar Kartheek Palla Committed by GitHub
Browse files

Merge pull request #207 from Samagra-Development/feat/questionpaper-docx

Fix: SB-26189
Showing with 2 additions and 2 deletions
+2 -2
......@@ -1150,8 +1150,8 @@ class ProgramServiceHelper {
}
addBaseUrlIfAbsent(url) {
if(url.search("http://") >= 0) return url;
addBaseUrlIfAbsent(url) {
if( (url.search("http://") >= 0) || (url.search("https://") >= 0)) return url;
else return `${envVariables.baseURL}${url}`;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment