feat: added disable_animations flag (#643)

This commit is contained in:
Anurag Hazra
2020-11-14 18:52:36 +05:30
committed by GitHub
parent 94aeabe300
commit f7f11d0b25
5 changed files with 15 additions and 4 deletions
+2
View File
@@ -30,6 +30,7 @@ module.exports = async (req, res) => {
cache_seconds,
custom_title,
locale,
disable_animations,
} = req.query;
let stats;
@@ -74,6 +75,7 @@ module.exports = async (req, res) => {
theme,
custom_title,
locale: locale ? locale.toLowerCase() : null,
disable_animations: parseBoolean(disable_animations),
}),
);
} catch (err) {