removes logs

This commit is contained in:
Vitor Pamplona 2025-01-02 18:09:27 -05:00
parent dbe593db98
commit 577ef6437f

View File

@ -85,8 +85,6 @@ open class ChatFileUploadModel : ViewModel() {
onError: (title: String, message: String) -> Unit,
context: Context,
) {
println("AABBCC uploading $account $selectedServer $chatroom $multiOrchestrator")
val myAccount = account ?: return
val mySelectedServer = selectedServer ?: return
val myChatroom = chatroom ?: return
@ -95,8 +93,6 @@ open class ChatFileUploadModel : ViewModel() {
viewModelScope.launch(Dispatchers.Default) {
isUploadingImage = true
println("AABBCC uploading")
val cipher = AESGCM()
val results =
@ -111,8 +107,6 @@ open class ChatFileUploadModel : ViewModel() {
context,
)
println("AABBCC uploading")
if (results.allGood) {
results.successful.forEach { state ->
if (state.result is UploadOrchestrator.OrchestratorResult.ServerResult) {