Drop banned proxy to fix link previews

pull/245/head
ryanzhao 5 years ago
parent 106c22d9d2
commit 34f2def122

@ -63,7 +63,10 @@ public class LinkPreviewRepository implements InjectableType {
public LinkPreviewRepository(@NonNull Context context) {
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())
.cache(null)
.build();

Loading…
Cancel
Save