mirror of
https://github.com/KokaKiwi/BarInsta
synced 2025-11-20 21:06:32 +00:00
Use map directly
This commit is contained in:
parent
e8ce2898b6
commit
9d2cc10083
1 changed files with 1 additions and 3 deletions
|
|
@ -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…
Add table
Reference in a new issue