Skip to content

Commit

Permalink
BUG: twitter.js: https:// URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
westurner committed Dec 18, 2014
1 parent 96941ce commit f1bc4d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jquery.lifestream.js
Original file line number Diff line number Diff line change
Expand Up @@ -2436,10 +2436,10 @@ $.fn.lifestream.feeds.tumblr = function( config, callback ) {
"config": config,
"html": $.tmpl( template.posted, {
"tweet": linkify($('<div/>').html(status.text).text()),
"complete_url": 'http://twitter.com/' + config.user +
"complete_url": 'https://twitter.com/' + config.user +
"/status/" + status.id
} ),
"url": 'http://twitter.com/' + config.user
"url": 'https://twitter.com/' + config.user
});
}
callback(output);
Expand Down
4 changes: 2 additions & 2 deletions src/services/twitter.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
"config": config,
"html": $.tmpl( template.posted, {
"tweet": linkify($('<div/>').html(status.text).text()),
"complete_url": 'http://twitter.com/' + config.user +
"complete_url": 'https://twitter.com/' + config.user +
"/status/" + status.id
} ),
"url": 'http://twitter.com/' + config.user
"url": 'https://twitter.com/' + config.user
});
}
callback(output);
Expand Down

0 comments on commit f1bc4d5

Please sign in to comment.