1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-11 02:54:10 +02:00

[RedditBridge] Return back NSFW posts to feed (#2257)

As it was working before applying https://github.com/RSS-Bridge/rss-bridge/pull/2229
This commit is contained in:
Bockiii
2021-09-04 15:00:02 +02:00
committed by GitHub
parent 68d9e2ff24
commit bcc15228d8
2 changed files with 3 additions and 1 deletions

View File

@@ -136,7 +136,8 @@ class RedditBridge extends BridgeAbstract {
. ($user ? 'author%3A' : 'subreddit%3A')
. $name
. '&sort='
. $this->getInput('d'))
. $this->getInput('d')
. '&include_over_18=on')
or returnServerError('Unable to fetch posts!');
$decodedValues = json_decode($values);