mirror of
https://codeberg.org/teddit/teddit
synced 2025-01-03 06:20:01 +01:00
API light mode subreddit
This commit is contained in:
parent
8315ad3f16
commit
aa3a854b6e
@ -9,7 +9,8 @@ module.exports = function () {
|
||||
from,
|
||||
api_type,
|
||||
api_target,
|
||||
subreddit
|
||||
subreddit,
|
||||
mode
|
||||
) => {
|
||||
if (!config.api_enabled) {
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
@ -182,6 +183,10 @@ module.exports = function () {
|
||||
}
|
||||
}
|
||||
|
||||
if (mode === 'light') {
|
||||
processed_json.selftext_html = null;
|
||||
}
|
||||
|
||||
return res.end(JSON.stringify(processed_json));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user