remove needless trial param

This commit is contained in:
Matthew Hodgson 2018-08-23 01:00:01 +02:00
parent 6aeedb25bc
commit fa5dc9fa0b

View file

@ -273,4 +273,4 @@ class MonthlyActiveUsersStore(SQLBaseStore):
if count < self.hs.config.max_mau_value:
yield self.upsert_monthly_active_user(user_id, create_as_trial)
elif now - last_seen_timestamp > LAST_SEEN_GRANULARITY:
yield self.upsert_monthly_active_user(user_id, create_as_trial)
yield self.upsert_monthly_active_user(user_id)