Drop banned proxy to fix link previews

This commit is contained in:
ryanzhao 2020-06-29 14:15:20 +10:00
parent 106c22d9d2
commit 34f2def122

View file

@ -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();