Fix self-repost option (#5229)

This commit is contained in:
the1812 2025-05-13 23:02:17 +08:00
parent 20b9a0c3f9
commit 7ffb224774

View File

@ -146,7 +146,7 @@ export default Vue.extend({
}
this.allTypes = Object.entries(feedsCardTypes)
.concat(Object.entries(specialTypes))
.filter(([, type]) => type.id <= 2048 && type.id > 0)
.filter(([, type]) => type.id <= 2048 && type.id !== 0)
.map(([name, type]) => [name, lodash.clone(type)])
cardsManager = await forEachFeedsCard({
added: card => {