We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab5f60 commit acbce6bCopy full SHA for acbce6b
source/views/student-orgs/clean-org.js
@@ -23,7 +23,7 @@ export default function cleanOrg(org: StudentOrgType): StudentOrgType {
23
const meetings = org.meetings.trim()
24
const description = fastGetTrimmedText(org.description)
25
let website = org.website.trim()
26
- if (website && /^https?:\/\//.test(website)) {
+ if (website && !/^https?:\/\//.test(website)) {
27
website = `http://${website}`
28
}
29
0 commit comments