mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-25 17:27:45 +00:00
Drop banned proxy to fix link previews
This commit is contained in:
parent
106c22d9d2
commit
34f2def122
@ -63,7 +63,10 @@ public class LinkPreviewRepository implements InjectableType {
|
|||||||
|
|
||||||
public LinkPreviewRepository(@NonNull Context context) {
|
public LinkPreviewRepository(@NonNull Context context) {
|
||||||
this.client = new OkHttpClient.Builder()
|
this.client = new OkHttpClient.Builder()
|
||||||
.proxySelector(new ContentProxySelector())
|
//It seems like Signal's proxy has been banned by Youtube.
|
||||||
|
//Just comment this out to fix link previews.
|
||||||
|
//We will move this to onion routing in the future
|
||||||
|
//.proxySelector(new ContentProxySelector())
|
||||||
.addNetworkInterceptor(new ContentProxySafetyInterceptor())
|
.addNetworkInterceptor(new ContentProxySafetyInterceptor())
|
||||||
.cache(null)
|
.cache(null)
|
||||||
.build();
|
.build();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user