Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 74b6835e authored by Philipp Kewisch's avatar Philipp Kewisch
Browse files

Revert: Temporarily reduce the funding reminder limits for 8.0b5

See 4453dbb9
parent 017307ee
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -4,13 +4,10 @@ import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.FragmentManager
import androidx.lifecycle.Lifecycle

// TODO These values are temporarily reduced for testing in 8.0b5. This should be 7 days and 30
// mintues under normal circumstances

// 1 day in milliseconds
const val FUNDING_REMINDER_DELAY_MILLIS = 1 * 24 * 60 * 60 * 1000L
// 15 minutes in milliseconds
const val FUNDING_REMINDER_MIN_ACTIVITY_MILLIS = 15 * 60 * 1000L
// 1 week in milliseconds
const val FUNDING_REMINDER_DELAY_MILLIS = 7 * 24 * 60 * 60 * 1000L
// 30 minutes in milliseconds
const val FUNDING_REMINDER_MIN_ACTIVITY_MILLIS = 30 * 60 * 1000L

interface FundingReminderContract {