diff options
| author | Omar Roth <omarroth@hotmail.com> | 2019-03-04 14:43:17 -0600 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2019-03-04 14:43:17 -0600 |
| commit | 32b9c0c8402076522601a3ed4e66235e05d24274 (patch) | |
| tree | e8a0dd1888157d579374c5bb642eb7e86ecd90f1 /src | |
| parent | 6375a624658bfeccf3fb403d0a7e0ae5194d5d95 (diff) | |
| download | invidious-32b9c0c8402076522601a3ed4e66235e05d24274.tar.gz invidious-32b9c0c8402076522601a3ed4e66235e05d24274.tar.bz2 invidious-32b9c0c8402076522601a3ed4e66235e05d24274.zip | |
Fix tagging for current branch
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious.cr | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/invidious.cr b/src/invidious.cr index e0967753..9c75de1c 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -90,9 +90,9 @@ REDDIT_URL = URI.parse("https://www.reddit.com") LOGIN_URL = URI.parse("https://accounts.google.com") PUBSUB_URL = URI.parse("https://pubsubhubbub.appspot.com") TEXTCAPTCHA_URL = URI.parse("http://textcaptcha.com/omarroth@hotmail.com.json") +CURRENT_BRANCH = `git branch | sed -n '/\* /s///p'`.strip CURRENT_COMMIT = `git rev-list HEAD --max-count=1 --abbrev-commit`.strip CURRENT_VERSION = `git describe --tags $(git rev-list --tags --max-count=1)`.strip -CURRENT_BRANCH = `git status | head -1`.strip LOCALES = { "ar" => load_locale("ar"), @@ -2536,15 +2536,15 @@ end get "/api/v1/stats" do |env| env.response.content_type = "application/json" - if statistics["error"]? - halt env, status_code: 500, response: statistics.to_json - end - if !config.statistics_enabled error_message = {"error" => "Statistics are not enabled."}.to_json halt env, status_code: 400, response: error_message end + if statistics["error"]? + halt env, status_code: 500, response: statistics.to_json + end + if env.params.query["pretty"]? && env.params.query["pretty"] == "1" statistics.to_pretty_json else |
