Fix image-only posts not being visible in custom feeds.
parent
8d03ab9399
commit
8f74c7b949
|
@ -213,6 +213,12 @@ export class FeedTuner {
|
||||||
hasProp(item.post.record, 'text') &&
|
hasProp(item.post.record, 'text') &&
|
||||||
typeof item.post.record.text === 'string'
|
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)
|
const res = lande(item.post.record.text)
|
||||||
|
|
||||||
if (langsCode3.includes(res[0][0])) {
|
if (langsCode3.includes(res[0][0])) {
|
||||||
|
|
Loading…
Reference in New Issue