Remove Debug Logs
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2023-03-16 16:56:45 -07:00
parent b89a90fa9c
commit ae1834e7b8
1 changed files with 0 additions and 3 deletions

View File

@ -129,8 +129,6 @@ class MainActivity: FlutterActivity() {
if (requestCode == FILEPICKER_REQUEST_CODE) {
val filePath = intent!!.getData().toString();
Log.d("MainActivity:FILEPICKER_REQUEST_CODE", "DownloadableFileCreated");
Log.d("MainActivity:FILEPICKER_REQUEST_CODE", this.dlManifestPath);
Log.d("MainActivity:FILEPICKER_REQUEST_CODE", filePath);
handleCwtch(MethodCall("DownloadFile", mapOf(
"ProfileOnion" to this.dlToProfile,
"conversation" to this.dlToHandle.toInt(),
@ -432,7 +430,6 @@ class MainActivity: FlutterActivity() {
val filekey: String = call.argument("filekey") ?: ""
// FIXME: Prevent spurious calls by Intent
if (profile != "") {
Log.d("MainActivity.kt", "Cwtch Download File Calling...")
Cwtch.downloadFileDefaultLimit(profile, conversation.toLong(), filepath, manifestpath, filekey)
}
}