Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
brizental committed Nov 14, 2023
1 parent a2f2f3f commit df74105
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class VPNService : android.net.VpnService() {
private var mCityname = ""
private var mBackgroundPingTimerMSec: Long = 3 * 60 * 60 * 1000 // 3 hours, in milliseconds
private var mShortTimerBackgroundPingMSec: Long = 3 * 60 * 1000 // 3 minutes, in milliseconds
private val mMetricsTimer: CountDownTimer = object : CountDownTimer(
private val mMetricsTimer: CountDownTimer = object : CountDownTimer(
if (isUsingShortTimerSessionPing) mShortTimerBackgroundPingMSec else mBackgroundPingTimerMSec,
if (isUsingShortTimerSessionPing) mShortTimerBackgroundPingMSec / 4 else mBackgroundPingTimerMSec / 4,
) {
Expand Down

0 comments on commit df74105

Please sign in to comment.