RichLinkPreview icon indicating copy to clipboard operation
RichLinkPreview copied to clipboard

Jsoup timeout Exception

Open adapana opened this issue 6 years ago • 0 comments

My app crashed sometimes due to Jsop timeout exception. I find solution to solve this exception. You need to add timeout in Jsoup.connect() method.

In your RichPreview.java class, You used Jsoup.connect(url).get(); instaead of that use Jsoup.connect(url).timeout(30*1000).get();

Please add method to set this custom timeout so that user can adjust timeout and prevent exception.

adapana avatar Sep 06 '18 05:09 adapana