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 4cef1ca commit 6d36422Copy full SHA for 6d36422
pages/speaker/[slug].tsx
@@ -32,6 +32,9 @@ export default function Page({
32
}) {
33
const title = `${speaker.name} - EuroPython 2022 | July 11th-17th 2022 | Dublin Ireland & Remote`;
34
const hasExtra = speaker.affiliation || speaker.homepage || speaker.twitter;
35
+ if (speaker.homepage != null) {
36
+ speaker.homepage = (speaker.homepage.indexOf('://') === -1) ? 'https://' + speaker.homepage : speaker.homepage;
37
+ }
38
39
return (
40
<Layout path={path} title={title}>
0 commit comments