Skip to content

Commit 218db6c

Browse files
committed
switched marvel api scheme to https
1 parent 90bbefb commit 218db6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/fetchUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fetch from 'isomorphic-fetch'
22
// sign up for a developer account at developer.marvel.com
33
// and export it from /src/utils/config.js
44
import { API_KEY } from './config'
5-
const BASE_URL = 'http://gateway.marvel.com/v1/public'
5+
const BASE_URL = 'https://gateway.marvel.com/v1/public'
66
const PUBLIC_KEY = API_KEY || '__MARVEL_API_PUBLIC_KEY__'
77
const authParams = `apikey=${PUBLIC_KEY}`
88

0 commit comments

Comments
 (0)