kevinhinterlong / archwiki-viewer

A simple Android specific viewer for the Arch Linux Wiki.
https://wiki.archlinux.org/
Apache License 2.0
72 stars 13 forks source link

Minor fix for scrolling to links #36

Closed kevinhinterlong closed 6 years ago

kevinhinterlong commented 6 years ago

Apparently the base URL is just the actual URL and not the domain. Also some minor refactoring Android Studio decided to do

The fix for #22 is

webView.loadDataWithBaseURL(
        wikiPage.getPageUrl(), //changed this
        wikiPage.getHtmlString(),
        TEXT_HTML_MIME,
        UTF_8,
        null
);