ReadYou icon indicating copy to clipboard operation
ReadYou copied to clipboard

Opening relative link crashes the app

Open stepanzak opened this issue 11 months ago • 0 comments

1. Environment

  • Device: [Samsung Galaxy S20 Ultra 5G]
  • OS: [Android 14]
  • APP: [0.11.1]

2. Describe the bug Clicking on a relative link crashes the app. Take this article: https://blog.ploeh.dk/2024/12/30/pytest-is-fast/ Feed: https://blog.ploeh.dk/rss There's this segment in the rss xml file:

As regular readers may have noticed, this is <a href="/2021/08/09/am-i-stuck-in-a-local-maximum">a bias that doesn't sit well with me</a>. Clearly, there are advantages to dynamic languages that I fail to notice. Is it <a href="/2024/12/09/implementation-and-usage-mindsets">a question of mindset</a>? Or is it a combination of several small advantages? </p> <p> In this article, I'll discuss another potential benefit of at least one dynamically typed language, <a href="https://www.python.org/">Python</a>.

Clicking on the first two links crashes the app, as they are relative. This is the intent I got by setting link opening to "always ask" in settings and opening it in App Manager's Interceptor. Any other setting just crashes the app.

URI	intent:blank#blocked#Intent;scheme=about;launchFlags=0x3400000;end

VERSION	1
ACTION	android.intent.action.VIEW
DATA	about:blank#blocked
FLAGS	0x3400000

MATCHING ACTIVITIES	2
0	LABEL  	Interceptor
 	NAME   	io.github.muntashirakon.AppManager.intercept.ActivityInterceptor
 	PACKAGE	io.github.muntashirakon.AppManager
1	LABEL  	Cromite
 	NAME   	com.google.android.apps.chrome.IntentDispatcher
 	PACKAGE	org.cromite.cromite

Clicking on the third link (python) works just fine. After clicking on the button at the bottom-right corner of the screen - "parse full content", all the links become clickable, even the first two.

stepanzak avatar Jan 02 '25 18:01 stepanzak