Skip to content

Commit

Permalink
Correct bitly API URL
Browse files Browse the repository at this point in the history
  • Loading branch information
prawnsalad authored Feb 17, 2019
1 parent 47911e4 commit 5d13632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin-conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ kiwi.plugin('conferencePlugin', (kiwi, log) => { /* eslint-disable-line no-undef
if (useLinkShortener) {
let req;
let shortLink;
if (linkShortenerURL.indexOf('api-ssl.bily.com') !== -1) {
if (linkShortenerURL.indexOf('api-ssl.bitly.com') !== -1) {
req = `${linkShortenerURL}?access_token=${linkShortenerAPIToken}&longUrl=${link}`;
shortLink = await getBitlyShortLink(req);
} else {
Expand Down

0 comments on commit 5d13632

Please sign in to comment.