This commit is contained in:
tiago.kayaya
2022-02-25 15:50:35 +01:00
parent 99275b891b
commit f15a0250b9
6 changed files with 175 additions and 9 deletions
+2 -3
View File
@@ -200,7 +200,6 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
const temp: any[] = result.files.reverse();
this.storedFileNames = temp[0];
console.log(this.storedFileNames);
})
}
@@ -364,7 +363,7 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
}
if (msg.attachments.type == "application/pdf") {
try {
const writeSecretFile = async () => {
await Filesystem.writeFile({
@@ -383,7 +382,7 @@ export class MessagesPage implements OnInit, AfterViewInit, OnDestroy {
directory: Directory.Documents,
encoding: Encoding.UTF8,
});
console.log('secrets:', contents);
};