[Android] Article load very slow with Chrome 72/73

Hi,

I have a problem if Chrome upgrade to v72/v73, article load very slow, it will take several seconds to load each article.

If I downgrade Chrome to v71, everything back to normal, article can be loaded instantly.

please report chrome issues to chrome developers

good luck

So, how should I report this problem to chrome developers? Let them install this app?

i don’t have any problems with chrome 73 so you’ll also need to provide your device i suppose

realistically the only thing you can do is wait until some later chrome version fixes whatever went wrong, maybe.

Disable all extensions and try again, maybe one of these is the problem.

Finally, I found some Chrome issue related to this, someone got same problem and submitted issue to Chrome team.

Check 945117 - chromium - An open-source project to help move the web forward. - Monorail
and 954439 - chromium - An open-source project to help move the web forward. - Monorail

Back to tt-rss, I think users who subscribed Chinese or Japanese feeds will have this problem.

I also tried to modify html data before loadDataWithBaseURL(), add lang="zh" or lang="ja" to html attribute, article can be instantly loaded again.

does this have to be added to root html element? if not, i could make a tt-rss plugin which would wrap article content returned via the API inside <div lang="..."> .... </div>

I tried what you said, it also works to lang attribute to article body only.

Like this:

<head>
	<meta content="text/html; charset=utf-8" http-equiv="content-type">
	<meta name="viewport" content="width=device-width, user-scalable=no" />
	<style type="text/css">
		body { padding : 0px; margin : 0px; line-height : 130%; word-wrap: break-word;
		}img, video, iframe { max-width : 100%; width : auto; height : auto; }
		table { width : 100%; }body { background : #000000; }body { color : #E0E0E0;
		} a:link {color: #2D92C8;} a:visited { color: #2D92C8;}body { text-align
		: justify; }
	</style>
</head>
<body>
	<div lang="zh">
		...
	</div>
</body>

alright, try this: https://git.tt-rss.org/fox/ttrss-api-content-lang

Your plugin works, thanks.