File tree 2 files changed +1
-3
lines changed
app/src/main/java/com/duckduckgo/app/browser
malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -3319,7 +3319,7 @@ class BrowserTabViewModel @Inject constructor(
3319
3319
3320
3320
if (! exempted) {
3321
3321
if (currentBrowserViewState().maliciousSiteBlocked && previousSite?.url == url.toString()) {
3322
- Timber .tag( " Cris " ). d(" maliciousSiteBlocked already shown for $url , previousSite: ${previousSite.url} " )
3322
+ Timber .d(" maliciousSiteBlocked already shown for $url , previousSite: ${previousSite.url} " )
3323
3323
} else {
3324
3324
val params = mapOf (CATEGORY_KEY to feed.name.lowercase(), CLIENT_SIDE_HIT_KEY to clientSideHit.toString())
3325
3325
pixel.fire(AppPixelName .MALICIOUS_SITE_PROTECTION_ERROR_SHOWN , params)
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ import javax.inject.Inject
54
54
import kotlinx.coroutines.TimeoutCancellationException
55
55
import kotlinx.coroutines.withContext
56
56
import kotlinx.coroutines.withTimeout
57
- import timber.log.Timber
58
57
59
58
interface MaliciousSiteRepository {
60
59
suspend fun getFeedForHashPrefix (hashPrefix : String ): Feed ?
@@ -169,7 +168,6 @@ class RealMaliciousSiteRepository @Inject constructor(
169
168
val revision = latestRevision.getRevisionForFeed(feed)
170
169
val data: T ? = if (networkRevision > revision) {
171
170
if (feed == SCAM && ! maliciousSiteProtectionFeature.scamProtectionEnabled()) {
172
- Timber .tag(" Cris" ).d(" Scam protection is disabled, skipping scam dataset download" )
173
171
null
174
172
} else {
175
173
getFunction(revision)
You can’t perform that action at this time.
0 commit comments