RichLinkPreview
RichLinkPreview copied to clipboard
Jsoup timeout Exception
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.