Skip to content

Commit

Permalink
[KoreusBridge + VarietyBridge] Use HTTPS when fetching feedburner fee…
Browse files Browse the repository at this point in the history
…ds (#1797)
  • Loading branch information
VerifiedJoseph authored Oct 15, 2020
1 parent 645a8f6 commit 0a1ff10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bridges/KoreusBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class KoreusBridge extends FeedExpander {

const MAINTAINER = 'pit-fgfjiudghdf';
const NAME = 'Koreus';
const URI = 'http://www.koreus.com/';
const URI = 'https://www.koreus.com/';
const DESCRIPTION = 'Returns the newest posts from Koreus (full text)';

protected function parseItem($item){
Expand All @@ -17,6 +17,6 @@ protected function parseItem($item){
}

public function collectData(){
$this->collectExpandableDatas('http://feeds.feedburner.com/Koreus-articles');
$this->collectExpandableDatas('https://feeds.feedburner.com/Koreus-articles');
}
}
2 changes: 1 addition & 1 deletion bridges/VarietyBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class VarietyBridge extends FeedExpander {
const DESCRIPTION = 'RSS feed for Variety';

public function collectData(){
$this->collectExpandableDatas('http://feeds.feedburner.com/variety/headlines', 15);
$this->collectExpandableDatas('https://feeds.feedburner.com/variety/headlines', 15);
}

protected function parseItem($newsItem){
Expand Down

0 comments on commit 0a1ff10

Please sign in to comment.