Skip to content

Commit 5318116

Browse files
committed
Update https url to bypass historic server issue with incorrect expiry dates
1 parent f6923c2 commit 5318116

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/main/java/com/duckduckgo/app/httpsupgrade/api/HttpsUpgradeService.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ import retrofit2.http.GET
2525

2626
interface HttpsUpgradeService {
2727

28-
@GET("https://staticcdn.duckduckgo.com/https/https-mobile-whitelist.json")
28+
@GET("https://staticcdn.duckduckgo.com/https/https-mobile-whitelist.json?cache_version=1")
2929
fun whitelist(): Call<List<HttpsWhitelistedDomain>>
3030

31-
@GET("https://staticcdn.duckduckgo.com/https/https-mobile-bloom-spec.json")
31+
@GET("https://staticcdn.duckduckgo.com/https/https-mobile-bloom-spec.json?cache_version=1")
3232
fun httpsBloomFilterSpec(): Observable<HttpsBloomFilterSpec>
3333

34-
@GET("https://staticcdn.duckduckgo.com/https/https-mobile-bloom.bin")
34+
@GET("https://staticcdn.duckduckgo.com/https/https-mobile-bloom.bin?cache_version=1")
3535
fun httpsBloomFilter(): Call<ResponseBody>
3636
}

0 commit comments

Comments
 (0)