Represent numbers by strings in instance activity API (#6198)
Fixes #6197.
This commit is contained in:
		@ -21,9 +21,9 @@ class Api::V1::Instances::ActivityController < Api::BaseController
 | 
			
		||||
 | 
			
		||||
      weeks << {
 | 
			
		||||
        week: week.to_time.to_i.to_s,
 | 
			
		||||
        statuses: Redis.current.get("activity:statuses:local:#{week_id}") || 0,
 | 
			
		||||
        logins: Redis.current.pfcount("activity:logins:#{week_id}"),
 | 
			
		||||
        registrations: Redis.current.get("activity:accounts:local:#{week_id}") || 0,
 | 
			
		||||
        statuses: Redis.current.get("activity:statuses:local:#{week_id}") || '0',
 | 
			
		||||
        logins: Redis.current.pfcount("activity:logins:#{week_id}").to_s,
 | 
			
		||||
        registrations: Redis.current.get("activity:accounts:local:#{week_id}") || '0',
 | 
			
		||||
      }
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user