mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-03-18 05:41:56 +01:00
Fix linter
This commit is contained in:
parent
21a45844df
commit
b730b8c6f6
@ -468,7 +468,8 @@ fun ImageFromBase64(base64String: String) {
|
||||
BlankNote()
|
||||
} else {
|
||||
val request =
|
||||
ImageRequest.Builder(context)
|
||||
ImageRequest
|
||||
.Builder(context)
|
||||
.data(imageBytes)
|
||||
.build()
|
||||
|
||||
|
@ -62,7 +62,9 @@ class GeoHashFeedFilter(
|
||||
it.event is PrivateDmEvent ||
|
||||
it.event is PollNoteEvent ||
|
||||
it.event is AudioHeaderEvent
|
||||
) && it.event?.isTaggedGeoHash(geoTag) == true && account.isAcceptable(it)
|
||||
) &&
|
||||
it.event?.isTaggedGeoHash(geoTag) == true &&
|
||||
account.isAcceptable(it)
|
||||
|
||||
override fun sort(collection: Set<Note>): List<Note> = collection.sortedWith(DefaultFeedOrder)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user