Fix image-only posts not being visible in custom feeds.

zio/stable
Markus Amalthea Magnuson 2023-06-12 01:40:59 +02:00
parent 8d03ab9399
commit 8f74c7b949
1 changed files with 6 additions and 0 deletions

View File

@ -213,6 +213,12 @@ export class FeedTuner {
hasProp(item.post.record, 'text') &&
typeof item.post.record.text === 'string'
) {
// Treat empty text the same as no text.
if (item.post.record.text.length === 0) {
hasPreferredLang = true
break
}
const res = lande(item.post.record.text)
if (langsCode3.includes(res[0][0])) {