mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-02-16 15:19:55 +03:00
fix(reddit): use old.reddit.com instead of www.reddit.com (#3848)
This commit is contained in:
parent
b34fa2d278
commit
3944ae68cb
1 changed files with 6 additions and 1 deletions
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* This bridge does NOT use reddit's official rss feeds.
|
||||
*
|
||||
* This bridge uses reddit's json api: https://old.reddit.com/search.json?q=
|
||||
*/
|
||||
class RedditBridge extends BridgeAbstract
|
||||
{
|
||||
const MAINTAINER = 'dawidsowa';
|
||||
const NAME = 'Reddit Bridge';
|
||||
const URI = 'https://www.reddit.com';
|
||||
const URI = 'https://old.reddit.com';
|
||||
const DESCRIPTION = 'Return hot submissions from Reddit';
|
||||
|
||||
const PARAMETERS = [
|
||||
|
|
Loading…
Add table
Reference in a new issue