Migrates to prefixes of 8 because more relays seem to work with this
This commit is contained in:
@@ -57,10 +57,10 @@ object NostrHomeDataSource : NostrDataSource("HomeFeed") {
|
|||||||
val follows = account.selectedUsersFollowList(account.defaultHomeFollowList)
|
val follows = account.selectedUsersFollowList(account.defaultHomeFollowList)
|
||||||
|
|
||||||
val followKeys = follows?.map {
|
val followKeys = follows?.map {
|
||||||
it.substring(0, 6)
|
it.substring(0, 8)
|
||||||
}
|
}
|
||||||
|
|
||||||
val followSet = followKeys?.plus(account.userProfile().pubkeyHex.substring(0, 6))
|
val followSet = followKeys?.plus(account.userProfile().pubkeyHex.substring(0, 8))
|
||||||
|
|
||||||
return TypedFilter(
|
return TypedFilter(
|
||||||
types = setOf(FeedType.FOLLOWS),
|
types = setOf(FeedType.FOLLOWS),
|
||||||
|
|||||||
Reference in New Issue
Block a user