mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 06:37:30 +00:00
Use map directly
This commit is contained in:
parent
e8ce2898b6
commit
9d2cc10083
@ -298,9 +298,7 @@ class DirectMessagesService private constructor(
|
||||
userIds: List<Long>,
|
||||
threadTitle: String?,
|
||||
): Call<DirectThread?> {
|
||||
val userIdStringList = userIds.asSequence()
|
||||
.filterNotNull()
|
||||
.map { it.toString() }
|
||||
val userIdStringList = userIds.map { it.toString() }
|
||||
val form = mutableMapOf<String, Any>(
|
||||
"_csrftoken" to csrfToken,
|
||||
"_uuid" to deviceUuid,
|
||||
|
Loading…
Reference in New Issue
Block a user