[KoreusBridge + VarietyBridge] Use HTTPS when fetching feedburner feeds (#1797)

This commit is contained in:
Joseph 2020-10-15 08:03:51 +00:00 committed by GitHub
parent 645a8f62c6
commit 0a1ff10a52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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){
@ -17,6 +17,6 @@ class KoreusBridge extends FeedExpander {
}
public function collectData(){
$this->collectExpandableDatas('http://feeds.feedburner.com/Koreus-articles');
$this->collectExpandableDatas('https://feeds.feedburner.com/Koreus-articles');
}
}

View File

@ -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){