mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-10-31 20:51:56 +00:00 
			
		
		
		
	Fix two swapped function names
This commit is contained in:
		| @@ -15,7 +15,7 @@ module Invidious::Database::Statistics | ||||
|     PG_DB.query_one(request, as: Int64) | ||||
|   end | ||||
|  | ||||
|   def count_users_active_1m : Int64 | ||||
|   def count_users_active_6m : Int64 | ||||
|     request = <<-SQL | ||||
|       SELECT count(*) FROM users | ||||
|       WHERE CURRENT_TIMESTAMP - updated < '6 months' | ||||
| @@ -24,7 +24,7 @@ module Invidious::Database::Statistics | ||||
|     PG_DB.query_one(request, as: Int64) | ||||
|   end | ||||
|  | ||||
|   def count_users_active_6m : Int64 | ||||
|   def count_users_active_1m : Int64 | ||||
|     request = <<-SQL | ||||
|       SELECT count(*) FROM users | ||||
|       WHERE CURRENT_TIMESTAMP - updated < '1 month' | ||||
|   | ||||
| @@ -56,8 +56,8 @@ class Invidious::Jobs::StatisticsRefreshJob < Invidious::Jobs::BaseJob | ||||
|     users = STATISTICS.dig("usage", "users").as(Hash(String, Int64)) | ||||
|  | ||||
|     users["total"] = Invidious::Database::Statistics.count_users_total | ||||
|     users["activeHalfyear"] = Invidious::Database::Statistics.count_users_active_1m | ||||
|     users["activeMonth"] = Invidious::Database::Statistics.count_users_active_6m | ||||
|     users["activeHalfyear"] = Invidious::Database::Statistics.count_users_active_6m | ||||
|     users["activeMonth"] = Invidious::Database::Statistics.count_users_active_1m | ||||
|  | ||||
|     STATISTICS["metadata"] = { | ||||
|       "updatedAt"              => Time.utc.to_unix, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 vojkovic
					vojkovic